Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
Signed-off-by: Kaden Emley <[email protected]>
  • Loading branch information
kemley76 committed Jun 26, 2024
1 parent 2f6994c commit 044f468
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion apps/frontend/src/components/cards/InfoCardRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
</div>
<v-card-actions>
<v-btn
:disabled="filter.tagFilter && filter.tagFilter.indexOf('severityoverride') !== -1"
:disabled="
filter.tagFilter &&
filter.tagFilter.indexOf('severityoverride') !== -1
"
@click="$emit('show-severity-overrides')"
>Filter to Severity Overrides</v-btn
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export default class ControlRowHeader extends mixins(HtmlSanitizeMixin) {
get status_color(): string {
// maps stuff like "not applicable" -> "statusnotapplicable", which is a defined color name
return `status${this.control.root.hdf.status.replace(' ', '')}`
return `status${this.control.root.hdf.status.replace(' ', '')}`;
}
get severity_color(): string {
Expand Down

0 comments on commit 044f468

Please sign in to comment.