Skip to content

Commit

Permalink
add primevue core
Browse files Browse the repository at this point in the history
  • Loading branch information
lindongchen committed Oct 22, 2024
1 parent 90099cb commit 9f417d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"primeicons": "^7.0.0",
"primevue": "4.1.1",
"@primevue/themes": "4.1.1",
"@primevue/core": "4.1.1",
"vee-validate": "4.12.8",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.2.41",
Expand Down
5 changes: 4 additions & 1 deletion gui/src/assets/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,10 @@ fieldset{
padding: 0 !important;
}
}

.p-inputgroup textarea{
min-height: 36px;
border:none !important;
}
@media screen and (max-width: 768px){

.block-content,.p-tabview .p-tabview-panels,.block-section{
Expand Down
2 changes: 1 addition & 1 deletion gui/src/views/log/Log.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ref, onMounted,onActivated,watch, computed } from "vue";
import dayjs from 'dayjs';
import _ from 'lodash';
import relativeTime from 'dayjs/plugin/relativeTime';
import { FilterMatchMode } from 'primevue/api';
import { FilterMatchMode } from '@primevue/core/api';
dayjs.extend(relativeTime)
const props = defineProps(['d','endpoints']);
Expand Down

0 comments on commit 9f417d3

Please sign in to comment.