Fix: Canned responses table column width breakage (#1881)

This commit is contained in:
Sivin Varghese 2021-03-09 18:37:18 +05:30 committed by GitHub
parent 0e40f8a10f
commit 94159ca9df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>