Skip to content

Commit

Permalink
OFMCC-5417 - Add Help/Resources link (#327)
Browse files Browse the repository at this point in the history
* Added temporary help links.

* Added temporary help links. (#328)

Co-authored-by: weskubo-cgi <[email protected]>

* Updated wording.

* Minor CHANGELOG update.

---------

Co-authored-by: weskubo-cgi <[email protected]>
  • Loading branch information
weskubo-cgi and weskubo-cgi authored Aug 27, 2024
1 parent 972a3dd commit b6918d3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [1.0.1] - 2024-08-26

### Added

- Implemented Help/Resources link to external site with updated wording

## [1.0.0] - 2024-08-13

### Added

- Initial release

[unreleased]: https://github.com/bcgov/ecc-ofm/compare/1.0.0...HEAD
[unreleased]: https://github.com/bcgov/ecc-ofm/compare/1.0.1...HEAD
[1.0.1]: https://github.com/bcgov/ecc-ofm/releases/tag/1.0.1
[1.0.0]: https://github.com/bcgov/ecc-ofm/releases/tag/1.0.0
4 changes: 2 additions & 2 deletions frontend/src/components/TheHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<v-skeleton-loader v-else type="chip" class="chip-loader" />
</div>
</v-col>
<v-col v-if="false" class="px-0" style="width: 50px">
<v-btn id="help_button" aria-label="Help" rounded @click="$router.push({ name: 'help' })">
<v-col class="px-0" style="width: 50px">
<v-btn id="help_button" aria-label="Help" rounded target="ofm_external_help" href="https://bcgov.sharepoint.com/sites/CCD-TDADExternal/SitePages/2023%20OFM%20Test.aspx">
<v-icon aria-hidden="false" icon="mdi-help-circle-outline" size="38" color="white" />
</v-btn>
</v-col>
Expand Down
16 changes: 13 additions & 3 deletions frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,15 @@
<v-card-text>Maintain or edit organization or facility information and request a change.</v-card-text>
</v-card>
</v-col>
<v-col v-if="false" cols="12" md="6" lg="4">
<v-card id="help-card" class="basic-card" prepend-icon="mdi-help-circle-outline" title="Help and Resources" @click="$router.push({ name: 'help' })">
<v-card-text>Need support? Find program training tools and resources, technical help, or call us.</v-card-text>
<v-col cols="12" md="6" lg="4">
<v-card
id="help-card"
class="basic-card"
prepend-icon="mdi-help-circle-outline"
title="Help and Resources"
target="ofm_external_help"
href="https://bcgov.sharepoint.com/sites/CCD-TDADExternal/SitePages/2023%20OFM%20Test.aspx">
<v-card-text>Need support? Find program training tools, resources and technical help.</v-card-text>
</v-card>
</v-col>
</v-row>
Expand Down Expand Up @@ -132,4 +138,8 @@ export default {
.alert-banner {
border: 1px solid rgb(252, 186, 25);
}
a[id='help-card']:hover {
color: #313132;
}
</style>

0 comments on commit b6918d3

Please sign in to comment.