Anthony Pessy

Results 75 comments of Anthony Pessy

@ncw Attempted a PR for this here: https://github.com/rclone/rclone/pull/6525 It was harder than anticipated, I first tried with `HeadBucketRequest` directly and always ended with an empty Header map I could not...

@devotox You can pass `onChangeSort` on the table itself. Combined with `sortProp` and `sortDir` you have full control hover the state and how you sort your data. See #13

@syedasadhasan You can do something like this: ```hbs {{#paper-data-table sortProp=model.sortProp sortDir=model.sortDir onChangeSort=(action "onChangeSort") selectable=false as |table|}} {{!-- iterate over model.items !--}} {{/paper-data-table}} ``` ```js onChangeSort({ sortProp, sortDir }) { //...

If this gets merged, the PR #31 should be updated..

For anyone stumbling upon this proposed fix, watch out that it relies on `Charset.defaultCharset()` to convert the string back into a byte array which may lead to a bad handling...

Using this fix I eventually encountered a nasty issue that made me lost a fair amount of time. Long story short, I had a piece of code that sometimes where...

Not sure which method we are talking about but you cannot convert back the given string to bytes without taking which charset it was since you cannot rely on `defaultCharset`....

Hi, Could you provide a JSFiddle or Plunkr highlighting the issue? It makes reproduction much easier for everyone. Thank you!

Very likely a duplicate of #1329