-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump docker/build-push-action from 5.3.0 to 6.1.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.3.0 to 6.1.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5.3.0...v6.1.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Bump actions/checkout from 4.1.6 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.6...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> update flow according to comments Bump docker/build-push-action from 5.3.0 to 6.1.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.3.0 to 6.1.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5.3.0...v6.1.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Bump actions/checkout from 4.1.6 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.6...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
Showing
5 changed files
with
236 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<div id="silenceModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="silenceModalLabel"> | ||
<div class="modal-dialog modal-lg" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<button type="button" class="close" @click="state.show = false" aria-label="Close"><span aria-hidden="true">×</span></button> | ||
<h4 class="modal-title" id="silenceModalLabel">New Silence</h4> | ||
</div> | ||
<div class="modal-body" style="padding:10px 30px;"> | ||
|
||
<div> | ||
<div v-for="message in globalMessages" :key="message.id"> | ||
<div :class="message.class" > | ||
[[ message.message ]] | ||
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<form @submit.prevent="submit()"> | ||
|
||
<div class="row mb-4"> | ||
<div class="col-md-4"> | ||
<h5> | ||
Start from | ||
</h5> | ||
<div> | ||
<input v-model="form.startsAt" placeholder="2006-10-25 14:30" type='datetime-local' class="form-control" /> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<h5> | ||
End | ||
</h5> | ||
<div> | ||
<input v-model="form.endsAt" placeholder="2006-10-25 14:30" type='datetime-local' class="form-control" /> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<h5> | ||
Duration | ||
</h5> | ||
<div> | ||
<input v-model="form.duration" placeholder="1m/1h/etc" class="form-control" /> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row mb-4"> | ||
<div class="col-md-12"> | ||
<h5> | ||
Target | ||
</h5> | ||
<div class="labels"> | ||
<ul class="list-inline promgen-labels-list"> | ||
<li v-for="(value, label) in state.labels"> | ||
<div class="promgen-label-target"> | ||
<span>[[label]]=~[[value]]</span> | ||
<span @click="removeLabel(label)" aria-hidden="true" class="promgen-label-close">×</span> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row mb-4"> | ||
<div class="col-md-12"> | ||
<h5>Matcher</h5> | ||
<div style="display: flex;align-items: center;"> | ||
<input type="text" placeholder="Label" v-model="form.label" class="form-control"> | ||
<input type="text" placeholder="=~" style="max-width: 50px; text-align: center;" class="form-control ml-2 mr-2" disabled> | ||
<input type="text" placeholder="Value" v-model="form.value" class="form-control"> | ||
<button type="button" class="btn btn-primary ml-2" @click="addLabel">+</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row mb-4"> | ||
<div class="col-md-6"> | ||
<h5> | ||
Created By | ||
</h5> | ||
<div> | ||
<input v-model="form.createdBy" class="form-control" /> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row mb-4"> | ||
<div class="col-md-12"> | ||
<h5> | ||
Comment | ||
</h5> | ||
<div> | ||
<textarea v-model="form.comment" class="form-control" rows="3"></textarea> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</form> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-primary" @click="submit()">Create</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |