Skip to content

Commit

Permalink
Update my account questions link (#5)
Browse files Browse the repository at this point in the history
Replace the "questions about fees?" link with a generic link for
"question about information in my account" near the bottom of the
page.
  • Loading branch information
gpeterso authored Feb 29, 2024
1 parent 9edcb3d commit 9432125
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 28 deletions.
4 changes: 2 additions & 2 deletions src/shared/components/account/account.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PrmFinesOverviewAfterComponent } from "./fines-overview";
import { PrmAccountOverviewAfterComponent } from "./overview";

export const AccountModule = angular
.module("account", [])
.component("prmFinesOverviewAfter", PrmFinesOverviewAfterComponent).name;
.component("prmAccountOverviewAfter", PrmAccountOverviewAfterComponent).name;
16 changes: 0 additions & 16 deletions src/shared/components/account/fines-overview/fines-overview.scss

This file was deleted.

3 changes: 0 additions & 3 deletions src/shared/components/account/fines-overview/index.ts

This file was deleted.

This file was deleted.

5 changes: 5 additions & 0 deletions src/shared/components/account/overview/account-overview.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
prm-account-overview-after {
section {
text-align: center;
}
}
3 changes: 3 additions & 0 deletions src/shared/components/account/overview/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import "./account-overview.scss";

export * from "./prm-account-overview-after.component";
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import template from "./prm-account-overview-after.html";

export const PrmAccountOverviewAfterComponent: ng.IComponentOptions = {
template: template,
bindings: { parentCtrl: "<" },
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<section>
<a href="https://www.lib.umn.edu/systemlibraries">
Questions about fees? Ask us!
Questions about information in My Account? Ask us!
</a>
</section>

0 comments on commit 9432125

Please sign in to comment.