mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Typo and use CSS rather than <i>
This commit is contained in:
parent
c5524851f3
commit
356a4a4392
@ -950,7 +950,9 @@ module.exports = React.createClass({
|
|||||||
if (this.state.pushers === undefined) {
|
if (this.state.pushers === undefined) {
|
||||||
devicesSection = <div className="error">Unable to fetch device list</div>
|
devicesSection = <div className="error">Unable to fetch device list</div>
|
||||||
} else if (this.state.pushers.length == 0) {
|
} else if (this.state.pushers.length == 0) {
|
||||||
devicesSection = <div><i>No devices are push notifications</i></div>
|
devicesSection = <div className="mx_UserSettings_devicesTable_nodevices">
|
||||||
|
No devices are receiving push notifications
|
||||||
|
</div>
|
||||||
} else {
|
} else {
|
||||||
// It would be great to be able to delete pushers from here too,
|
// It would be great to be able to delete pushers from here too,
|
||||||
// and this wouldn't be hard to add.
|
// and this wouldn't be hard to add.
|
||||||
|
@ -65,3 +65,6 @@ limitations under the License.
|
|||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
|
.mx_UserSettings_devicesTable_nodevices {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user