Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmvd committed Feb 7, 2025
1 parent 4d65aaf commit 949a4dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions timesketch/frontend-ng/src/views/Story.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ limitations under the License.
<component :is="block.componentName" v-bind="formatComponentProps(block)"></component>
</v-card-text>
</v-card>
<v-card v-if="block.componentProps.aggregation_group && block.componentName === 'TsAggregationGroupCompact'" outlined class="mb-2">
<v-card v-if="block.componentName === 'TsAggregationGroupCompact'" outlined class="mb-2">
<v-toolbar dense flat
>{{ block.componentProps.aggregation_group.name }}
<v-spacer></v-spacer>
Expand All @@ -144,7 +144,7 @@ limitations under the License.
<v-divider></v-divider>
<v-card-text>Legacy group Aggregations are not supported. Please view this Story in the old UI or update your analyzer.</v-card-text>
</v-card>
<v-card v-if="block.componentProps.aggregation && block.componentName === 'TsAggregationCompact'" outlined class="mb-2">
<v-card v-if="block.componentName === 'TsAggregationCompact'" outlined class="mb-2">
<v-toolbar dense flat
>{{ block.componentProps.aggregation.name }}
<v-spacer></v-spacer>
Expand Down Expand Up @@ -345,7 +345,7 @@ export default {
titleDraft: '',
blocks: [],
renameStoryDialog: false,
deleteStoryDialog: false, // Add state for the delete dialog
deleteStoryDialog: false,
}
},
computed: {
Expand Down

0 comments on commit 949a4dd

Please sign in to comment.