File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 7
7
[ #653 ] ( https://github.com./nextcloud/cookbook/pull/653 ) @seyfeb
8
8
- Fix empty error message upon import
9
9
[ #647 ] ( https://github.com./nextcloud/cookbook/pull/647 ) @christianlupus
10
+ - Really only show recipe-reference popup on '#'
11
+ [ #676 ] ( https://github.com./nextcloud/cookbook/pull/676 ) @seyfeb
10
12
11
13
## 0.8.4 - 2021-03-08
12
14
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ export default {
227
227
if (
228
228
e .keyCode === 13 ||
229
229
e .keyCode === 10 ||
230
- (this .referencePopupEnabled && e .keyCode === 51 )
230
+ (this .referencePopupEnabled && e .key === " # " )
231
231
) {
232
232
e .preventDefault ()
233
233
const $li = e .currentTarget .closest (" li" )
@@ -251,7 +251,7 @@ export default {
251
251
.getElementsByTagName (" input" )[0 ]
252
252
.focus ()
253
253
}
254
- } else if (this .referencePopupEnabled && e .keyCode === 51 ) {
254
+ } else if (this .referencePopupEnabled && e .key === " # " ) {
255
255
e .preventDefault ()
256
256
const elm = this .$refs [" list-field" ][$pressed_li_index]
257
257
// Check if the letter before the hash
You can’t perform that action at this time.
0 commit comments