-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1017 from Tradeshift/paya-1423
feat(tags): Add properties to tags so it can render in tables
- Loading branch information
Showing
2 changed files
with
72 additions
and
3 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,7 +1,8 @@ | ||
<!DOCTYPE edbml> | ||
<script> | ||
<?param name="tag" type="ts.ui.TagModel"?> | ||
@id = 'tag' + tag.$instanceid; | ||
|
||
<figure data-ts="Tag" @id></figure> | ||
@id = tag.id || 'tag' + tag.$instanceid; | ||
$att['data-ts.type'] = tag.type || null; | ||
$att['data-ts.data'] = tag.data || null; | ||
<figure data-ts="Tag" @data-ts.type @data-ts.data @id></figure> | ||
</script> |