Commit ca3f179b authored by Tan Le's avatar Tan Le

Fix wide content overflowed on Notebook output

This change fix layout overflowing on the non-code output section in
Jupyter notebook.
parent 3186e349
...@@ -37,6 +37,6 @@ export default { ...@@ -37,6 +37,6 @@ export default {
<template> <template>
<div class="output"> <div class="output">
<prompt type="Out" :count="count" :show-output="showOutput" /> <prompt type="Out" :count="count" :show-output="showOutput" />
<div v-html="sanitizedOutput"></div> <div class="gl-overflow-auto" v-html="sanitizedOutput"></div>
</div> </div>
</template> </template>
---
title: Fix wide content overflow on Notebook output
merge_request: 45971
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment