mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-03 20:25:47 +01:00
Fix completion error handling issue.
This commit is contained in:
@@ -647,9 +647,9 @@ var CompletionContext = Class("CompletionContext", {
|
|||||||
catch (e) {
|
catch (e) {
|
||||||
util.reportError(e);
|
util.reportError(e);
|
||||||
yield [i, cache[i] = cache[i] || util.xmlToDom(
|
yield [i, cache[i] = cache[i] || util.xmlToDom(
|
||||||
<div highlight={highlightGroup || "CompItem"} style="white-space: nowrap">
|
<div highlight="CompItem" style="white-space: nowrap">
|
||||||
<li highlight="CompResult">{items[i].text} </li>
|
<li highlight="CompResult">{items[i].text} </li>
|
||||||
<li highlight="CompDesc">{e} </li>
|
<li highlight="CompDesc ErrorMsg">{e} </li>
|
||||||
</div>, doc)];
|
</div>, doc)];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user