-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning messages up, remove bad vars from fields on save
- Loading branch information
1 parent
13b3fca
commit ad7b561
Showing
8 changed files
with
62 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
<can-import from="./health-message.less" /> | ||
|
||
<div class="problem alert-danger"> | ||
<span class="glyphicon-attention"></span> | ||
{{message}} | ||
<span class="glyphicon-attention"></span> | ||
</div> | ||
{{#is(alertClass , "warning")}} | ||
<div class="problem alert-warning"> | ||
<span class="glyphicon-info-circled-1"></span> | ||
{{message}} | ||
<span class="glyphicon-info-circled-1"></span> | ||
</div> | ||
{{else}} | ||
<div class="problem alert-danger"> | ||
<span class="glyphicon-attention"></span> | ||
{{message}} | ||
<span class="glyphicon-attention"></span> | ||
</div> | ||
{{/is}} |
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 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