-
Notifications
You must be signed in to change notification settings - Fork 640
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1766 Fix the procedure related flow items
- Loading branch information
Showing
3 changed files
with
36 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,54 @@ | ||
<span ng-if="value._type == 'case'"> | ||
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-folder-open"></i> | ||
#{{value.caseId || value.number}} - {{value.title}} | ||
</a> | ||
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-folder-open"></i> | ||
#{{value.caseId || value.number}} - {{value.title}} | ||
</a> | ||
</span> | ||
<span ng-if="value._type == 'Case'"> | ||
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-folder-open"></i> | ||
#{{value.caseId || value.number}} - {{value.title}} | ||
</a> | ||
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-folder-open"></i> | ||
#{{value.caseId || value.number}} - {{value.title}} | ||
</a> | ||
</span> | ||
<span ng-if="value._type == 'case_task'"> | ||
<entity-link value="value.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class=" glyphicon glyphicon-tasks"></i> | ||
{{value.title}} | ||
</a> | ||
<entity-link value="value.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class=" glyphicon glyphicon-tasks"></i> | ||
{{value.title}} | ||
</a> | ||
</span> | ||
<span ng-if="value._type == 'Task'"> | ||
<entity-link value="value.extraData.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class=" glyphicon glyphicon-tasks"></i> | ||
{{value.title}} | ||
</a> | ||
<entity-link value="value.extraData.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class=" glyphicon glyphicon-tasks"></i> | ||
{{value.title}} | ||
</a> | ||
</span> | ||
<span ng-if="value._type == 'case_task_log'"> | ||
<entity-link value="value.case_task" target="target"></entity-link> | ||
<i class="text-muted wrap" class="glyphicon glyphicon-comment"></i> | ||
<entity-link value="value.case_task" target="target"></entity-link> | ||
<i class="text-muted wrap" class="glyphicon glyphicon-comment"></i> | ||
</span> | ||
<span ng-if="value._type == 'case_artifact'"> | ||
<entity-link value="value.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-pushpin"></i> | ||
{{value.data | ellipsis:100}}{{value.attachment.name}} | ||
</a> | ||
<entity-link value="value.case" target="target"></entity-link> | ||
<a class="text-muted wrap" href ng-click="openLink(entityUrl(value))"> | ||
<i class="glyphicon glyphicon-pushpin"></i> | ||
{{value.data | ellipsis:100}}{{value.attachment.name}} | ||
</a> | ||
</span> | ||
<span ng-if="value._type == 'case_artifact_job'"> | ||
<entity-link value="value.case_artifact" target="target"></entity-link> | ||
<entity-link value="value.case_artifact" target="target"></entity-link> | ||
</span> | ||
|
||
<span ng-if="value._type == 'case_artifact_job_log'"> | ||
<entity-link value="value.case_artifact_job" target="target"></entity-link> | ||
<i class="text-muted wrap" class=" glyphicon glyphicon-plus"></i> | ||
<entity-link value="value.case_artifact_job" target="target"></entity-link> | ||
<i class="text-muted wrap" class=" glyphicon glyphicon-plus"></i> | ||
</span> | ||
|
||
<span ng-if="value._type == 'Procedure'"> | ||
<entity-link value="value.case" target="target"></entity-link> | ||
</span> | ||
|
||
<span ng-if="value._type == 'analyzer'"> | ||
<i class="text-muted wrap" class=" glyphicon glyphicon-cog"></i> | ||
ANALYZER / TODO | ||
<i class="text-muted wrap" class=" glyphicon glyphicon-cog"></i> | ||
ANALYZER / TODO | ||
</span> |
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