[bug] fix link item display order value
This commit is contained in:
parent
b0d283c852
commit
f66bc64dac
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.42.0",
|
||||
"version": "5.42.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.42.0",
|
||||
"version": "5.42.1",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1086,6 +1086,14 @@ var update = (function() {
|
|||
size: 0
|
||||
};
|
||||
return data;
|
||||
},
|
||||
"5.42.1": function(data) {
|
||||
if (data.state.link.item.display.order == "letconname") {
|
||||
data.state.link.item.display.order = "visualname";
|
||||
} else if (data.state.link.item.display.order == "nameletcon") {
|
||||
data.state.link.item.display.order = "namevisual";
|
||||
};
|
||||
return data;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var version = (function() {
|
||||
|
||||
var current = "5.42.0";
|
||||
var current = "5.42.1";
|
||||
|
||||
var name = "Macabre Caterpillar";
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "nightTab",
|
||||
"short_name": "nightTab",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"version": "5.42.0",
|
||||
"version": "5.42.1",
|
||||
"manifest_version": 2,
|
||||
"chrome_url_overrides": {
|
||||
"newtab": "index.html"
|
||||
|
|
Loading…
Reference in New Issue