From c4db3cb3511f80b2e47430e244d7fd219acc895b Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Tue, 31 May 2022 16:11:52 -0500 Subject: [PATCH] Show RP4 32-bit as 32-bit --- .../var/www/mynode/templates/includes/info_table.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rootfs/standard/var/www/mynode/templates/includes/info_table.html b/rootfs/standard/var/www/mynode/templates/includes/info_table.html index d4e75f2f..928baa76 100644 --- a/rootfs/standard/var/www/mynode/templates/includes/info_table.html +++ b/rootfs/standard/var/www/mynode/templates/includes/info_table.html @@ -23,8 +23,12 @@ Device Type {{device_type}} - {% if device_type == "raspi4" and device_arch == "aarch64" %} - 64-bit + {% if device_type == "raspi4" %} + {% if device_arch == "aarch64" %} + 64-bit + {% else %} + 32-bit + {% endif %} {% endif %}