mirror of
https://github.com/pi-hole/web.git
synced 2025-12-20 02:38:28 +00:00
Set default values for each property of versions object (#3268)
This commit is contained in:
@@ -503,7 +503,7 @@ function updateVersionInfo() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Core",
|
name: "Core",
|
||||||
local: version.core.local.version,
|
local: version.core.local.version || "N/A",
|
||||||
remote: version.core.remote.version,
|
remote: version.core.remote.version,
|
||||||
branch: version.core.local.branch,
|
branch: version.core.local.branch,
|
||||||
hash: version.core.local.hash,
|
hash: version.core.local.hash,
|
||||||
@@ -512,7 +512,7 @@ function updateVersionInfo() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "FTL",
|
name: "FTL",
|
||||||
local: version.ftl.local.version,
|
local: version.ftl.local.version || "N/A",
|
||||||
remote: version.ftl.remote.version,
|
remote: version.ftl.remote.version,
|
||||||
branch: version.ftl.local.branch,
|
branch: version.ftl.local.branch,
|
||||||
hash: version.ftl.local.hash,
|
hash: version.ftl.local.hash,
|
||||||
@@ -521,7 +521,7 @@ function updateVersionInfo() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Web interface",
|
name: "Web interface",
|
||||||
local: version.web.local.version,
|
local: version.web.local.version || "N/A",
|
||||||
remote: version.web.remote.version,
|
remote: version.web.remote.version,
|
||||||
branch: version.web.local.branch,
|
branch: version.web.local.branch,
|
||||||
hash: version.web.local.hash,
|
hash: version.web.local.hash,
|
||||||
|
|||||||
Reference in New Issue
Block a user