Skip to content

Commit

Permalink
[BugFix] Fix meta attr column headers (#4221)
Browse files Browse the repository at this point in the history
* [BugFix] Fix meta attr column headers

* Fix the fix
  • Loading branch information
gchhablani authored Nov 23, 2023
1 parent ab19d20 commit 7db9c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/web/challenge/my-submission.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h6>My Participated Team: {{challenge.participated_team_name}}</h6>
<td ng-if="key.method_description == '' && challenge.currentPhaseMetaAttributesVisibility['method_description'] != false"> None </td>

<td ng-if="key.project_url != '' && challenge.currentPhaseMetaAttributesVisibility['project_url'] != false">{{key.project_url}}</td>
<td ng-if="key.project_url == ''" ng-if="challenge.currentPhaseMetaAttributesVisibility['project_url'] != false"> None </td>
<td ng-if="key.project_url == '' && challenge.currentPhaseMetaAttributesVisibility['project_url'] != false"> None </td>

<td ng-if="key.publication_url != '' && challenge.currentPhaseMetaAttributesVisibility['publication_url'] != false">{{key.publication_url}}</td>
<td ng-if="key.publication_url == '' && challenge.currentPhaseMetaAttributesVisibility['publication_url'] != false"> None </td>
Expand Down

0 comments on commit 7db9c38

Please sign in to comment.