Commit b1f75584 authored by Illya Klymov's avatar Illya Klymov

Fix error in table when text is too long

Changelog: fixed
parent 98da9924
......@@ -161,7 +161,7 @@ export default {
>
</template>
<template #row-details="{ item }">
<pre>{{ item.failures }}</pre>
<pre><code>{{ item.failures }}</code></pre>
</template>
</gl-table>
<pagination-bar
......
......@@ -37,5 +37,7 @@ export default {
</script>
<template>
<gl-loading-icon v-if="loading" size="md" />
<pre v-else>{{ error || s__('BulkImport|No additional information provided.') }}</pre>
<pre
v-else
><code>{{ error || s__('BulkImport|No additional information provided.') }}</code></pre>
</template>
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