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 { ...@@ -161,7 +161,7 @@ export default {
> >
</template> </template>
<template #row-details="{ item }"> <template #row-details="{ item }">
<pre>{{ item.failures }}</pre> <pre><code>{{ item.failures }}</code></pre>
</template> </template>
</gl-table> </gl-table>
<pagination-bar <pagination-bar
......
...@@ -37,5 +37,7 @@ export default { ...@@ -37,5 +37,7 @@ export default {
</script> </script>
<template> <template>
<gl-loading-icon v-if="loading" size="md" /> <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> </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