File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# code owner will automatically be PR reviewer for specific code
2
2
# ref: https://help.github.com/articles/about-codeowners/
3
3
4
- * @ liuderchi
4
+ * @ juggernautjp @ liuderchi
5
5
6
6
def /ar /* .cson @ AmrIKhudair @ atefBB
7
7
Original file line number Diff line number Diff line change
1
+ ## 0.26.1 - Bug fix, chores
2
+
3
+ - Not localized Menu Context-Menu #322
4
+ - bump deps
5
+
1
6
## 0.26.0 - Malay support
2
7
3
8
- ms i18n #313
Original file line number Diff line number Diff line change @@ -68,10 +68,9 @@ export default class PreferencesUtil {
68
68
const sv = document . querySelector ( '.settings-view' ) ;
69
69
for ( var btn of sv . querySelectorAll ( '.meta-controls .install-button' ) ) {
70
70
if ( ! this . isAlreadyLocalized ( btn ) ) {
71
- var version ;
71
+ const version = btn . textContent . substr ( 9 ) ;
72
72
const buttonText = btn . textContent . startsWith ( 'Update to' )
73
- ? this . defS [ 'control-btns' ] . update +
74
- ( version = btn . textContent . substr ( 9 ) )
73
+ ? this . defS [ 'control-btns' ] . update + version
75
74
: this . defS [ 'control-btns' ] . install ;
76
75
this . applyTextWithOrg ( btn , buttonText ) ;
77
76
}
You can’t perform that action at this time.
0 commit comments