Strange, I was thinking about the Umlaut… but then thought this should only be a problem if function and caller are in two files with different encoding. Not the case here.
But maybe because it is first a string, which needs to be handled the right way…

Posts made by arlecchino
-
RE: [Solved] How to deal with @added event/method in q-uploader
-
RE: [Solved] How to deal with @added event/method in q-uploader
Ah, and I think it is not
upload-factory
, justfactory(files: Array)
.
But this shouldn’t be the problem of@added
, it is simply ignored in your code. -
RE: [Solved] How to deal with @added event/method in q-uploader
Are you using image files to test it?
https://github.com/quasarframework/quasar/blob/eccbd3242d00f5303120689211b5712ce1c78737/ui/src/components/uploader/QUploaderBase.js#L289
https://github.com/quasarframework/quasar/blob/eccbd3242d00f5303120689211b5712ce1c78737/ui/src/components/uploader/QUploaderBase.js#L312You can give
no-thumbnails
prop a try. -
How do I test with app extension components?
Hi,
how do I register the app extension components with @vue/test-utils?
I get this error:
[Vue warn]: Unknown custom element: <q-media-player> - did you register the component correctly?
This directive is used in a component template I’d like to test.
Thanks.
-
RE: How to UpperCase v-model of q-input?
I think you have to query the correct element in the el tree.
el.getElementsByTagName(‘input’)[0].value = el.getElementsByTagName(‘input’)[0].value.toUpperCase(); -
Closing standalone PWA by script
Hi,
is it possible to close a standalone mode PWA by script with Quasar?
So e.g. to have a drawer menu entry “Quit”.Thanks