Skip to content

Commit 9030da8

Browse files
author
Daniel Herzog
committed
DFL-3639: URL line in Storage tab is cut off
1 parent 6d79eed commit 9030da8

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/storage/data-storages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ cls.StorageDataBase = new function()
389389
return obj._rt_id;
390390
},
391391
renderer: function(groupvalue, obj) {
392-
return templates.storage.runtime_group_render(runtimes.getRuntime(obj[0]._rt_id).uri);
392+
return runtimes.getRuntime(obj[0]._rt_id).uri;
393393
},
394394
idgetter: function(obj) {
395395
return ""+obj[0]._rt_id;

src/storage/templates-storages.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
window.templates || (window.templates = {});
22

33
window.templates.storage = {
4-
runtime_group_render: function(uri) {
5-
return this.wrap_ellipsis(uri);
6-
},
74
wrap_ellipsis: function(elem) {
85
var template = [
96
"div",

0 commit comments

Comments
 (0)