Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.
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 .github/workflows/check-header.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#
# Copyright 2019-2021 VMware, Inc.
# Copyright 2019-2024 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0
#

name: check-header

on:
push:
branches: ["**", '!master']
branches: ["**"]
pull_request:
branches: ['**']

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud_scan_app.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#
# Copyright 2019-2021 VMware, Inc.
# Copyright 2019-2024 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0
#

name: sonarcloud_scan_app

on:
push:
branches: ["**", '!master']
branches: ["**"]
pull_request:
branches: ['**']

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1753,7 +1753,7 @@ export class ProjectAnalyzeComponent implements OnInit {
let flag1;
let flag2;
if (this.projectType == 'ner' || this.projectType == 'qa' || this.projectType == 'log') {
flag1 = this.sr.userInputs && this.sr.userInputs.length > 0 && this.sr.userInputs[0].problemCategory.length >= 0;
flag1 = this.sr.userInputs && this.sr.userInputs.length > 0 && this.sr.userInputs[0].problemCategory.length;
} else {
flag1 = this.sr.userInputs && this.sr.userInputs.length > 0;
}
Expand Down