@worksafevictoria/wcl7.5 1.15.0 → 1.16.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
:background-variant="'grey'"
|
|
8
8
|
class="task-finder"
|
|
9
9
|
:class="{ workwell }"
|
|
10
|
-
|
|
10
|
+
:isMobileOrTabletView="isMobileOrTabletView"
|
|
11
11
|
>
|
|
12
12
|
<template v-slot:content>
|
|
13
13
|
<row>
|
|
@@ -138,6 +138,7 @@ export default {
|
|
|
138
138
|
this.selectedTask = task?.card?.selectedCard
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
|
+
// If no children, navigate to url
|
|
141
142
|
if (
|
|
142
143
|
!task?.card?.selectedCard.children ||
|
|
143
144
|
task?.card?.selectedCard.children.length < 1
|
package/src/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Global
|
|
1
|
+
// Global Components - replace Homepageheader with HomepageHeaderNew to introduce new header
|
|
2
2
|
import Container from './components/Containers/Container/index.vue'
|
|
3
3
|
import Row from './components/Containers/Row/index.vue'
|
|
4
4
|
import Column from './components/Containers/Column/index.vue'
|
|
@@ -6,7 +6,7 @@ import HomepageHeader from './components/Containers/HomepageHeader/index.vue'
|
|
|
6
6
|
import Subheader from './components/Containers/Subheader/index.vue'
|
|
7
7
|
import SectionGroup from './components/Containers/SectionGroup/index.vue'
|
|
8
8
|
import CarouselComponent from './components/Containers/Carousel/index.vue'
|
|
9
|
-
|
|
9
|
+
// Replace AppHeader with AppHeaderNew to introduce new header
|
|
10
10
|
import AppHeader from './components/Global/AppHeader/index.vue'
|
|
11
11
|
import AppFooter from './components/Global/AppFooter/index.vue'
|
|
12
12
|
import HeroHeader from './components/Global/HeroHeader/index.vue'
|