Jonas Jonny
Jonas Jonny
Any idea @t4t5?
Thank you @MossP. I already moved to https://github.com/Kureev/react-native-navbar a week ago. Because of lack of support from author.
Hi @nashwaan, any comment on this, or #80? It looks like if XML includes `&` then `xml-js` is searching for `;` and is testing everything between. Problem is https://github.com/isaacs/sax-js ```...
@nashwaan We really need to have an option how to change `true` to `false`.
CC: @nashwaan
@wojciktomasz Did you found solution? @EscoCreeks, @benjycui Any workaround? Actually `monthFormat` does not work... at least at DVAjs.
@EscoCreeks DVA.js https://ant.design/components/date-picker/ with `[email protected]`. ``` import cs_CZ from 'antd/node_modules/rc-calendar/lib/locale/cs_CZ'; const locale = { ...cs_CZ, monthFormat: 'MMMM' } ``` ``` console.log('print locale', locale); // print locale: { ... monthBeforeYear: true...
I found workaround. ``` monthCellContentRender={value => value.format('MMMM')} ``` v v v ``` value.format('MMMM')} onChange={this.handleOnChangeMonth} /> ``` value is "2018-01-05T10:13:09.269Z" so after format is everything fine! _(Maybe whole problem is just...
Issue with "Common MIME types": on windows, ZIP files have application/x-zip-compressed for the type
Still here, when you upload zip file (`req.file`) from Windows to Node application (ExpressJS). On Mac/Linux `req.file.mimetype === 'application/zip'`. Windows file is uploaded as `'application/x-zip-compressed'`.
Issue with "Common MIME types": on windows, ZIP files have application/x-zip-compressed for the type
@sideshowbarker: I think it's "Windows feature" and "no one" can do anything about it anyway.