Wrong tab name in custom workspace experience
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 03:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 03:26 AM
Hi @Kajal8 ,
Hope you are doing great.
To ensure that the tab name consistently displays 'Home' when accessing your workspace, you need to adjust the settings for the workspace's homepage. Try using below steps to resolve this issue:
- Open the ServiceNow Studio by navigating to the Application Navigator and searching for "Studio."
- In ServiceNow Studio, locate and open the workspace that you're encountering the issue with.
- Within the workspace, navigate to the "Pages" section or the specific page that is set as the homepage.
- Look for the page configuration that determines the title displayed in the browser tab. This configuration can be found in the HTML code of the page.
- Locate the HTML code snippet that sets the page title and make sure it is configured to display 'Home'. If it is currently set to 'TASK0010001', modify it to 'Home'. Example :
<title>Home</title>​
- Save the changes made to the HTML code.
Regards,
Riya Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 04:20 AM
I want to do this for CSM/FSM configurable workspace. Is it possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 04:57 AM
@Kajal8 , yes it is feasible for CSM/FSM configurable workspace too. If we don't have Home tab in this then you can create a new tab i.e ui action following below steps:
Create new UI policy, and give name as Home
Define the condition of Ui policy
current.form.name == 'Your Workspace Form Name'
Create a client script
// Replace 'Your Workspace Form Name' with the actual name of the workspace form
if (g_form.getFormElement().name == 'Your Workspace Form Name') {
g_form.setTabCaption('Home');
}
- Apply the UI policy and client script to the workspace
Regards,
Riya Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-04-2024 08:23 AM
Hi Kajal,
Is this issue resolved? Can you please share the solution for this