diff --git a/src/tags/taglist.tag b/src/tags/taglist.tag
index 25baae8..bd4aad2 100644
--- a/src/tags/taglist.tag
+++ b/src/tags/taglist.tag
@@ -15,106 +15,107 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
-->
-
-
-
-
- arrow_back
-
-
Tags of { registryUI.name() + '/' + registryUI.taglist.name }
-
-
-
-
-
-
-
- | Repository |
- |
- Creation date |
- Size |
+
+
+
+
+ arrow_back
+
+
Tags of { registryUI.name() + '/' + registryUI.taglist.name }
+
+
+
+
+
+
+
+ | Repository |
+ |
+ Creation date |
+ Size |
- Tag
- |
- History |
- |
-
-
-
-
- | { image.name } |
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
-
-
-
-
+ registryUI.taglist.reverse = function () {
+ if (registryUI.taglist.asc) {
+ registryUI.taglist.tags.reverse();
+ registryUI.taglist.asc = false;
+ } else {
+ registryUI.taglist.tags.sort(registryUI.DockerImage.compare);
+ registryUI.taglist.asc = true;
+ }
+ registryUI.taglist.instance.update();
+ };
+ registryUI.taglist.refresh = function () {
+ route(registryUI.taglist.name);
+ };
+
+
\ No newline at end of file