Merge branch 'dev' into next

This commit is contained in:
chenjiahan
2020-09-10 17:35:33 +08:00
6 changed files with 62 additions and 5 deletions
+3 -3
View File
@@ -113,13 +113,13 @@ export default createComponent({
if (extraKeys.length === 1) {
keys.push(
{ text: 0, wider: true },
{ text: extraKey[0], type: 'extra' }
{ text: extraKeys[0], type: 'extra' }
);
} else if (extraKeys.length === 2) {
keys.push(
{ text: extraKey[0], type: 'extra' },
{ text: extraKeys[0], type: 'extra' },
{ text: 0 },
{ text: extraKey[1], type: 'extra' }
{ text: extraKeys[1], type: 'extra' }
);
}