Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr committed Dec 13, 2024
1 parent 4045131 commit 5060440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DateModal.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import moment, { DurationInputArg2 } from 'moment';
import { onMounted, Ref, ref } from 'vue';
import { onMounted, ref } from 'vue';
import { useMainStore } from '../store';
const emit = defineEmits<{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Import.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const importFromJson = () => {
}
const importLayout = (data: string) => {
let l = new Layout('main', { leftColWidth: 300, drawerColWidth: 900, maxMessages: 1000, middlewares: [] })
let l = new Layout('main', { leftColWidth: 300, drawerColWidth: 900, maxMessages: 1000, middlewares: [], entriesOrder: "desc" })
l.loadFromObj(JSON.parse(data))
emit('layout-loaded', l)
}
Expand Down

0 comments on commit 5060440

Please sign in to comment.