Skip to content

Commit 6ba113e

Browse files
committed
Polish ui code
unecessary scss sections removed no type for errors props
1 parent ea63e0a commit 6ba113e

File tree

7 files changed

+10
-21
lines changed

7 files changed

+10
-21
lines changed

spring-boot-admin-server-ui/src/main/frontend/utils/d3.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ import * as shape from 'd3-shape';
2323
import * as time from 'd3-time';
2424

2525
export default {
26-
...shape,
27-
...scale,
28-
...axis,
2926
...array,
27+
...axis,
3028
...brush,
31-
...time,
32-
...selection
33-
}
29+
...scale,
30+
...selection,
31+
...shape,
32+
...time
33+
}

spring-boot-admin-server-ui/src/main/frontend/views/applications/handle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
default: () => [],
3737
},
3838
error: {
39-
type: Object,
39+
type: null,
4040
default: null
4141
}
4242
},

spring-boot-admin-server-ui/src/main/frontend/views/instances/jolokia/m-bean-attributes.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,3 @@
8282
},
8383
}
8484
</script>
85-
86-
<style lang="scss">
87-
@import "~@/assets/css/utilities";
88-
</style>

spring-boot-admin-server-ui/src/main/frontend/views/instances/jolokia/m-bean-operation-invocation.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,3 @@
186186
watch: {}
187187
}
188188
</script>
189-
190-
<style lang="scss">
191-
@import "~@/assets/css/utilities";
192-
</style>

spring-boot-admin-server-ui/src/main/frontend/views/instances/shell/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
default: () => [],
3939
},
4040
error: {
41-
type: Object,
41+
type: null,
4242
default: null
4343
}
4444
},

spring-boot-admin-server-ui/src/main/frontend/views/shell/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
default: () => [],
3232
},
3333
error: {
34-
type: Object,
34+
type: null,
3535
default: null
3636
}
3737
},

spring-boot-admin-server-ui/src/main/frontend/views/shell/navbar.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@
5050
</template>
5151

5252
<script>
53-
import iconSpringBootAdmin from '@/assets/img/icon-spring-boot-admin.svg';
54-
5553
export default {
56-
components: {iconSpringBootAdmin},
5754
data: () => ({
5855
showMenu: false
5956
}),
@@ -67,7 +64,7 @@
6764
default: () => [],
6865
},
6966
error: {
70-
type: Object,
67+
type: null,
7168
default: null
7269
}
7370
},

0 commit comments

Comments
 (0)