mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
ea4000cf1e
* Fix 'Failed check: Ellipsis' on Weblate Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Fix tests Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Remove white space characters before the horizontal ellipsis from RoomPreviewBar Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * yarn run i18n Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Additional change Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> --------- Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
40 lines
791 B
Plaintext
40 lines
791 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Module Components should override the factory for a ModuleSpinner 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Spinner"
|
|
>
|
|
<div
|
|
aria-label="Loading…"
|
|
class="mx_Spinner_icon"
|
|
data-testid="spinner"
|
|
role="progressbar"
|
|
style="width: 32px; height: 32px;"
|
|
/>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`Module Components should override the factory for a TextInputField 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Field mx_Field_input"
|
|
>
|
|
<input
|
|
autocomplete="off"
|
|
id="mx_Field_1"
|
|
label="My Label"
|
|
placeholder="My Label"
|
|
type="text"
|
|
value="My Value"
|
|
/>
|
|
<label
|
|
for="mx_Field_1"
|
|
>
|
|
My Label
|
|
</label>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|