From c6ea8bf75c699fa580035a4a8016bc3d3927857a Mon Sep 17 00:00:00 2001 From: "hyunduk.kim" Date: Mon, 21 Oct 2019 10:44:11 +0900 Subject: [PATCH] Fix column title in main page This changes the title of column from 'EXTENSIONS lists' to 'Addons List' Change-Id: I18bf4525423d2524e99e01638d1b9c7f5cf521b0 Signed-off-by: hyunduk.kim --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index e0fe8eb..17eed53 100755 --- a/src/main.js +++ b/src/main.js @@ -45,7 +45,7 @@ var refreshExtensionsList = function() { var td_2 = document.createElement('td'); tr.appendChild(td_1); tr.appendChild(td_2); - td_1.textContent = 'EXTENSIONS lists'; + td_1.textContent = 'Addons List'; table.appendChild(tr); extension_manager.loadJsonDB(); -- 2.34.1