Commit 5495a63c authored by Phil Hughes's avatar Phil Hughes

Merge branch 'tancnle/fix-jupyter-notebook-overflow' into 'master'

Fix content overflow on Notebook output

See merge request gitlab-org/gitlab!45971
parents 0ce2464b ca3f179b
...@@ -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