Fix typescript-ts-mode indentation tests (bug#71998)
* test/lisp/progmodes/typescript-ts-mode-resources/indent.erts: (JSX indentation): Add quote and remove semi-colon, so the code is valid.
This commit is contained in:
parent
02fbdbf4ff
commit
3d46f3e3ed
1 changed files with 4 additions and 4 deletions
|
@ -111,8 +111,8 @@ return (
|
|||
<div>
|
||||
{
|
||||
props.foo
|
||||
? Hello, foo!
|
||||
: Hello, World!;
|
||||
? 'Hello, foo!'
|
||||
: 'Hello, World!'
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -129,8 +129,8 @@ const foo = (props) => {
|
|||
<div>
|
||||
{
|
||||
props.foo
|
||||
? Hello, foo!
|
||||
: Hello, World!;
|
||||
? 'Hello, foo!'
|
||||
: 'Hello, World!'
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue