Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/175 fix system view bug #176

Merged
merged 2 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/adf-services/df-service-details/df-paywall-modal.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- eslint-disable prettier/prettier -->
<div class="app-container" style="padding: 12px 20px">
<h1 mat-dialog-title style="text-align: center">Unlock Service</h1>
<mat-dialog-content>
Expand All @@ -12,8 +13,7 @@ <h4>{{ 'paywall.hostedTrial' | transloco }}</h4>
<div class="dynamic-width">
<h4>{{ 'paywall.ossVersion' | transloco }}</h4>
<p>
{{ 'paywall.signup' | transloco
}}<a
{{ 'paywall.signup' | transloco }}<a
href="https://genie.dreamfactory.com/?utm_source=platform&utm_medium=paywall&utm_campaign=hosted"
target="_blank"
>{{ 'paywall.trial' | transloco }}</a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class DfServiceDetailsComponent implements OnInit {
)
)
.subscribe(({ env, route }) => {
if (route['groups'][0] === 'Database') {
if (route['groups'] && route['groups'][0] === 'Database') {
this.isDatabase = true;
}
const { data, serviceTypes, groups } = route;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ <h1 class="page-header">
</mat-expansion-panel>
</ng-template>
</ng-container>
</ng-template>
</ng-template>
1 change: 1 addition & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ mat-form-field {
flex-wrap: wrap;
gap: 16px;
width: 100%;
padding-top: 6px;
& .full-width {
width: 100%;
}
Expand Down