Skip to content

Commit

Permalink
Dev (#46)
Browse files Browse the repository at this point in the history
* Synchronizing code from bitbucket repository

* Removing TomSelect because it is no longer updated

* Metric template remove restriction

* Multiple environment variables fix

* - Setting dark mode by default in the login window
- Providing better view of current build id and build environment for debugging
- Added environment variables to set_env.sh so that they can be set during build

* Application saving and traversing through the ui fixed #8 #11

* Fixing ts errors on Error handling

* Adding build specific information for better debugging

* Added new button to duplicate application

* Bug fixes and improvements

* Added undeploy functionality

* Bug fixes,refactoring resources and added max tries in app polling

* Fix in files in order to run pipeline

* Some Resource Modal ui fixes

* feat-677

* feat-790

* Checking slot type to avoid typescript

---------

Co-authored-by: Vasilis Kefalas <vkefalas@existanze.com>
  • Loading branch information
fotisp and vkefalas-exz authored Jan 14, 2025
1 parent 38beee4 commit 2b9d382
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nebulous-gui",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"engines": {
"node": "v20.13.1"
},
Expand Down
4 changes: 2 additions & 2 deletions gui/src/base-components/Breadcrumb/Breadcrumb.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { HTMLAttributes, useSlots, provide } from "vue"
import {HTMLAttributes, useSlots, provide, Slot} from "vue"
export type ProvideBeradcrumb = {
light?: boolean
Expand All @@ -9,7 +9,7 @@ interface BreadcrumbProps extends /* @vue-ignore */ HTMLAttributes {
light?: boolean
}
const slots = useSlots()
const slots = useSlots() as Record<string, Slot | undefined>;
const { light } = defineProps<BreadcrumbProps>()
Expand Down
4 changes: 2 additions & 2 deletions gui/src/base-components/Headless/Disclosure/Group.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type Variant = "default" | "boxed"
</script>
<script setup lang="ts">
import { ref, provide, useSlots, ComputedRef, computed } from "vue"
import {ref, provide, useSlots, ComputedRef, computed, Slot} from "vue"
export type ProvideGroup = ComputedRef<{
selectedIndex?: number | null
Expand All @@ -17,7 +17,7 @@ interface GroupProps {
variant?: Variant
}
const slots = useSlots()
const slots = useSlots() as Record<string, Slot | undefined>;
const { as, selectedIndex, variant } = withDefaults(defineProps<GroupProps>(), {
as: "div",
Expand Down

0 comments on commit 2b9d382

Please sign in to comment.