You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Add TabComplete.Entry so we can render images AND text(!) - Add peek() option, all broken.
This commit is contained in:
@@ -31,6 +31,7 @@ var MatrixClientPeg = require("../../../MatrixClientPeg");
|
||||
var SlashCommands = require("../../../SlashCommands");
|
||||
var Modal = require("../../../Modal");
|
||||
var CallHandler = require('../../../CallHandler');
|
||||
var TabComplete = require("../../../TabComplete");
|
||||
var sdk = require('../../../index');
|
||||
|
||||
var dis = require("../../../dispatcher");
|
||||
@@ -228,7 +229,7 @@ module.exports = React.createClass({
|
||||
}
|
||||
}
|
||||
}).map(function(m) {
|
||||
return m.name || m.userId;
|
||||
return new TabComplete.Entry(m.name || m.userId);
|
||||
});
|
||||
}
|
||||
if (this.props.tabComplete) {
|
||||
|
||||
Reference in New Issue
Block a user