camel-idea-plugin icon indicating copy to clipboard operation
camel-idea-plugin copied to clipboard

Camel icon in rest-dsl do not show if you start with rest() and not rest("somename")

Open davsclaus opened this issue 6 years ago • 2 comments

I noticed that the icon is not shown if you just have

 rest()
   .get("/{id}")...

But if you have (its shown)

 rest("/")
   .get("/{id}")...

Or

 rest("/somename")
   .get("/{id}")...

davsclaus avatar Mar 16 '18 09:03 davsclaus

@bennetelli maybe you wanna have fun with this one ;)

davsclaus avatar Mar 22 '18 07:03 davsclaus

@davsclaus of course :)

bennetelli avatar Mar 22 '18 13:03 bennetelli

The corresponding PR https://github.com/camel-tooling/camel-idea-plugin/pull/767

essobedo avatar Nov 17 '22 10:11 essobedo