We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From @Pszek on November 15, 2016 11:34
After ternary operators ES6 string templates tend to break syntax highlighting (like the one below):
Copied from original issue: microsoft/vscode#15508
The text was updated successfully, but these errors were encountered:
@Pszek can you please paste your code here for investigation. Thanks
Sorry, something went wrong.
Here you are:
const ProductPrice = ({inStock, price}) => { const dashCode = 8211 const dash = String.fromCharCode(dashCode) return ( <span className={styles.uPrice} itemProp='offers' itemScope='' itemType='https://schema.org/Offer' > <span itemProp='price' > {inStock ? I18n.toCurrency(price) : <div className={styles.outOfStock}> {`${dash}`}{I18n.t('spree.out_of_stock')}{`${dash}`} </div>} </span> </span> ) }
ea59fd1
${APP_ROOT}${bc.link}
waderyan
No branches or pull requests
From @Pszek on November 15, 2016 11:34
After ternary operators ES6 string templates tend to break syntax highlighting (like the one below):
Copied from original issue: microsoft/vscode#15508
The text was updated successfully, but these errors were encountered: