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

fix(orb-ui): #199 remove asterisk policy view #2298

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h4>{{ isEdit ? 'Edit Agent Policy' : 'Create Agent Policy'}}</h4>
<div>
<label
class="font-weight-bold"
for="name">Name Label</label>
for="name">Sink Name</label>
<span class="required">*</span>
</div>
<input
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/pages/fleet/agents/key/agent.key.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<label>Provisioning Command</label>
<p>
<a href="https://getorb.io/docs/#running-orb-agent"
<a href="https://orb.community/documentation/running_orb_agent/"
target="_blank">See here
</a>
for more advanced options.
Expand Down
4 changes: 2 additions & 2 deletions ui/src/app/pages/sinks/add/sink.add.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h4>{{strings.sink[isEdit ? 'edit' : 'add']['header']}}</h4>
<nb-form-field>
<div class="d-flex flex-column">
<div>
<label class="font-weight-bold">Name Label</label>
<label class="font-weight-bold">Sink Name</label>
<span class="required">*</span>
</div>
<input autofocus
Expand Down Expand Up @@ -247,7 +247,7 @@ <h4>{{strings.sink[isEdit ? 'edit' : 'add']['header']}}</h4>
<div class="d-flex row">
<div class="col-md-12 col-xl-6">
<div>
<label class="font-weight-bold">Name Label</label>
<label class="font-weight-bold">Sink Name</label>
<p data-orb-qa-id="review-name">{{firstFormGroup?.controls.name.value}}</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<ng-template #groupTemplateCell let-i="index" let-row="row" let-value="value">
<button (click)="onOpenGroupDetails(row?.agent_group)"
class="edit-dataset-button" nbTooltip="{{ row?.agent_group?.id }}">
class="edit-dataset-button" matTooltip="{{ row?.agent_group?.name }}">
{{ row?.agent_group?.name }}
</button>
</ng-template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<ng-template #readView>
<div class="d-flex flex-column">
<div class="flex-row">
<label class="summary-accent">Name<span class="required">*</span></label>
<label class="summary-accent">Name</label>
<p>{{ policy?.name }}</p>
</div>
<div class="flex-row">
Expand Down