Orange HRM Corporate Branding Customization - orangehrm

I have cloned the open source Orange HRM software ( v5 ). I want to customize certain features as per my organization needs.
I am trying to add a tertiary color option to the Admin->Corporate Branding section. For this I followed the occurrences of secondary color instances throughout the project and added a new variable for tertiary color, following the same.
The option is displayed in the Admin section but when I change the color and try to preview or publish, it gives "Invalid Parameter" error.
Does anyone has any suggestions?
Any help is much appreciated.
Thanks.
I cross checked if I missed to include it in any of the locations where the secondary variable is defined but its included everywhere.
Unable to trace what is missing here.

Related

Mattermost mention highlighting does not working as expected

I want to trigger a mention anytime someone just type my first name. I have a new message in "recent mentions" but it does not highlight my first name (with yellow color if you use a default theme) but if I use normal mention with '#' symbol and select user from the list it does highlight #Nickname.
I tried to change settings but I can't get this working. In my team it works for some users but it doesnt work for my account.

Workflow Error - One or More Projects require additional setup

I've created a workflow in YouTrack with one rule. However, on the Workflow screen, next to the name of my Workflow there is a box that says in red text, 'requires setup'. When I hover over this it says, 'One or more projects require additional setup'.
Does anyone know what needs done to resolve this error? I looked at the project and everything seems to be set up fine.
Any advice/help is appreciated.
Most probably, a field or field value that's required by the workflow is missing in the project. Expand the workflow row in the table, select a row corresponding to the rule, and in the form on the right you'll see what exactly is wrong and will have a chance to fix it pressing "Apply fixes".

Rider not showing "Check expression for null" in contextual popup

I'm starting with rider and just started doing some of the built-in introductory tutorials.
Just at the beginning (I think it is third step) of the essentials tutorial I am instructed to do this (Can be read on the right) but no option is shown in the contextual popup realted to Checking expression to null.
Must I do anything special for this option to show?
The solution wasn't loaded correctly. The red exclamation mark in the right upper corner of the editor sais that solution analysis also has errors. In addition, we see lots of red code in the editor. It seems to be the reason for the corresponding action absence. Most likely, it means that you have incorrect MSBuld in Rider settings "File | Settings | Build, Execution, Deployment | Toolset and Build." Please, check your MSBuild settings.
https://www.jetbrains.com/help/rider/Settings_Toolset_and_Build.html
If it does not help, please submit a support request (https://rider-support.jetbrains.com/.) with attached logs (https://rider-support.jetbrains.com/hc/en-us/articles/360001079770-How-to-collect-Rider-logs-)

Remove PhpStorm blue tab underline

How can I remove the blue underline?
ATM you cannot.
It was introduced to make currently active tab more visible in Darcula GUI Theme (IDEA-131683, IDEA-103206) where tab backgrounds are too similar. Check comments there (mainly first ticket).
So far the best match would be https://youtrack.jetbrains.com/issue/IDEA-168708 -- watch this ticket (star/vote/comment) to get notified on any progress.
In meantime please try Active IntelliJ Tab Highlighter plugin -- it may provide such functionality (was created by one of the users before this new tab highlighting functionality was introduced) -- it's customizable so may not have such underline at all.
Your image link is broken.
Please, try to follow this path step by step:
File/Settings/Editor/Color Scheme/General
This General screen can remove with checkbox disable all underline
Also, you can look this image.
I hope have been helping you.
screenshot

In Android Studio 1.1.0, is there a way to change the color of only those method names defined in the current file/class?

I can imagine that this might not (ever) be a feature.
(I wouldn't necessarily want "other" method calls to be blue as shown in the second block; blue is just to emphasize what's different from first block.)
If there's a way to just color methods defined in the current class, please advise.
(I want this because my eyes need all the help they can get.)
No, there is no such feature in IntelliJ IDEA as of version 14.1. It can be implemented as a plugin, but I'm not aware of any such plugin.
Just documenting, as I was looking for a way to do this and I have found a way that is satisfactory enough to me.
There's a way, but it's a workaround, it will have side effects.
How:
Go to File > Settings > Inspections (Choose the Global Profile if necessary).
Type in the search: qualified.
Tick the checkbox next to "Instance method call not qualified with 'this'".
Click on Severity > Edit severities, add new entry by clicking the green + button.
Name it whatever you want.
You must put it at the bottom of the list using the arrows. If you don't, the F2 key will no longer work as you expect it as it will prioritize errors at the top of the list.
Set the Error stripe mark to #FFFFFF, or the same color as the scrollbar.
Set it bold if you wish.
If you want to set a color, you must set a background color to white (or black if you have a black interface). If you don't, the color will appear black in most conditions.
If you really want to, do the same for "Unnecessary 'this' qualifier"; there is an additional checkbox to make it only apply to methods and not fields.
Side effects:
This enables inspections, which is not desired.
Pointing the mouse cursor onto the method calls will cause a hover text to appear describing the inspection.
If your code has no errors, no warnings, and no additional informative inspections, pressing F2 will jump through these calls.