Skip to content

Commit

Permalink
Merge branch 'main' into hotwax#726-Learn-more
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 authored Nov 28, 2024
2 parents 8e660ab + 3390190 commit b6a2d5c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/LearnMoreModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
<ion-item lines="none">
<ion-label>{{ translate("Sources") }}</ion-label>
</ion-item>
<ion-item v-for="section in jobSection" :key="section.id" lines="none">
<ion-row class="ion-padding" v-for="section in jobSection" :key="section.id">
<ion-chip outline @click="redirectToDoc(section)">
<ion-label>{{ section.title }}</ion-label>
<ion-icon :icon="openOutline" />
</ion-chip>
</ion-item>
</ion-row>
</ion-list>

<ion-item>
Expand All @@ -60,7 +60,7 @@
</template>

<script lang="ts">
import { IonButton, IonButtons, IonChip, IonContent, IonHeader, IonIcon, IonItem, IonLabel, IonList, IonSpinner, IonTitle, IonToolbar, modalController } from "@ionic/vue";
import { IonButton, IonButtons, IonChip, IonContent, IonHeader, IonIcon, IonItem, IonLabel, IonList, IonRow, IonSpinner, IonTitle, IonToolbar, modalController } from "@ionic/vue";
import { closeOutline, openOutline } from 'ionicons/icons'
import { translate } from '@hotwax/dxp-components';
import { defineComponent } from "vue";
Expand All @@ -80,6 +80,7 @@ export default defineComponent({
IonItem,
IonLabel,
IonList,
IonRow,
IonSpinner,
IonTitle,
IonToolbar
Expand Down Expand Up @@ -167,4 +168,4 @@ export default defineComponent({
};
}
})
</script>
</script>

0 comments on commit b6a2d5c

Please sign in to comment.