Skip to content

Commit

Permalink
Merge pull request #18 from koskedk/dev
Browse files Browse the repository at this point in the history
globe ui improvements
  • Loading branch information
koskedk authored Feb 13, 2020
2 parents 8c58d6a + 82edc83 commit 843bef7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/client/src/containers/App.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.layout-menu {
top: 50px !important;
position: sticky !important;
}
.layout-main {
padding-top: 20px !important;
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/containers/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class App extends Component<Props, State> {
}
},
{
label: "Facilities",
label: "Master Facilities",
icon: "build",
command: () => {
window.location.hash = "/globe/facility";
Expand Down
2 changes: 2 additions & 0 deletions packages/client/src/containers/agency/AgencyList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export class AgencyList extends Component<Props, {}> {
<div>
<Button
disabled={true}
hidden={true}
icon="pi pi-external-link"
onClick={event => this.manageAction(event, rowData)}
></Button>
Expand All @@ -42,6 +43,7 @@ export class AgencyList extends Component<Props, {}> {
Agencies{" "}
<Button
disabled={true}
hidden={true}
onClick={this.addAction}
icon="pi pi-plus"
style={{ float: "right" }}
Expand Down
2 changes: 2 additions & 0 deletions packages/client/src/containers/agency/MechanismList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export class MechanismList extends Component<Props, {}> {
<div>
<Button
disabled={true}
hidden={true}
icon="pi pi-external-link"
onClick={event => this.manageAction(event, rowData)}
></Button>
Expand All @@ -42,6 +43,7 @@ export class MechanismList extends Component<Props, {}> {
Mechanisms{" "}
<Button
disabled={true}
hidden={true}
onClick={this.addAction}
icon="pi pi-plus"
style={{ float: "right" }}
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/containers/agency/MechanismScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class MechanismScene extends Component<{}, State> {
</div>

<Dialog
header="Mechanism"
header="Implementing Partners"
visible={this.state.showForm}
style={{ width: "50vw" }}
onHide={this.handleHide}
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/containers/mfl/FacilityList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class FacilityList extends Component<Props, {}> {
render() {
const header = (
<div className="p-clearfix" style={{ lineHeight: "1.87em" }}>
Facilitiys{" "}
Facilities{" "}
<Button
disabled={true}
onClick={this.addAction}
Expand Down

0 comments on commit 843bef7

Please sign in to comment.