Fix: Canned responses table column width breakage (#1881)
This commit is contained in:
parent
0e40f8a10f
commit
94159ca9df
1 changed files with 8 additions and 3 deletions
|
@ -40,7 +40,9 @@
|
|||
:key="cannedItem.short_code"
|
||||
>
|
||||
<!-- Short Code -->
|
||||
<td>{{ cannedItem.short_code }}</td>
|
||||
<td class="short-code">
|
||||
{{ cannedItem.short_code }}
|
||||
</td>
|
||||
<!-- Content -->
|
||||
<td>{{ cannedItem.content }}</td>
|
||||
<!-- Action Buttons -->
|
||||
|
@ -99,9 +101,7 @@
|
|||
</div>
|
||||
</template>
|
||||
<script>
|
||||
/* global bus */
|
||||
import { mapGetters } from 'vuex';
|
||||
|
||||
import AddCanned from './AddCanned';
|
||||
import EditCanned from './EditCanned';
|
||||
|
||||
|
@ -201,3 +201,8 @@ export default {
|
|||
},
|
||||
};
|
||||
</script>
|
||||
<style scoped>
|
||||
.short-code {
|
||||
width: 14rem;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue