Damian Duda

Results 10 comments of Damian Duda

+1 and it would be great to be able to set the node font color

If you don't mind overriding styles with CSS, then here's the way to go: ```css .sankey { .node-label-text-path { text-shadow: none; fill: #fff !important; } } ```

Is that not implemented yet, or do we have faulty configuration? Here's screenshot of scheduled jobs: ![image](https://user-images.githubusercontent.com/1241239/134766064-411ea2e7-16b1-4cae-abe2-327120eb90a2.png) Jobs in regular queues are locked properly. ```ruby class ReportRecalculationWorker include Sidekiq::Worker sidekiq_options...

@mhenrixon thank you, however I think I wasn't clear enough. I don't want to reschedule / replace the jobs in `reports` queue / ScheduledSet. If `ReportRecalculationWorker` is already enqueued /...

Sure: ```ruby # frozen_string_literal: true class ReportRecalculationWorker include Sidekiq::Worker sidekiq_options queue: "reports", unique_across_queues: true, lock: :until_executing, on_conflict: :reject def perform if too_many_jobs || last_execution_too_recently return ReportRecalculationWorker.perform_in(10.seconds) end save_execution_time recalcuate... end...

@orlando a merge, maybe?

@kcq any update on this? I see a PR but it looks like it's stuck for some reason

@estroz will this get merged? That's a **big** PR - would be a shame to leave it and let it have more conflicts 😉

I couldn't get `update` to work as expected so I went with `animate` - which unfortunately works only for `scatter` type charts (see https://github.com/plotly/plotly.js/issues/1019 ). But it's better than nothing...

Could this get fixed finally? I suggest at least appending current gem version to each plugin path, like `/assets/tinymce/plugins/lists/plugin.js?v=5.0.4`