Skip to content

Commit

Permalink
Merge pull request #1698 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Vishwas1 authored Sep 20, 2022
2 parents 67b0b29 + 55bb0ae commit 278bd2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/elements/HfTable.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="card event-card tableCard">
<b-table thead-class="thead-light" :class="customStyle" :items="items" :fields="fields">
<div class="card event-card">
<b-table thead-class="thead-light tableCard" :class="customStyle" :items="items" :fields="fields">
<template v-for="(field, index) in fields" #[`cell(${field.key})`]="data">
<span v-if="field.type === 'date'" :key="index" :type="field.type">{{
new Date(items[data.index][field.key]).toLocaleString()
Expand Down Expand Up @@ -83,7 +83,7 @@ export default {
</script>

<style scoped>
.tableCard {
.tableCard{
word-wrap: break-word; white-space: nowrap; box-sizing: border-box;
}
.copy {
Expand Down

0 comments on commit 278bd2a

Please sign in to comment.