---
title: "lfShowTab"
canonical: "https://support.appfire.com/space/PSJ/15480414/lfShowTab"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | lfShowTab(field) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Shows the given tab.

Shows the given tab.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| field | String | Yes | Specifies the tab to show |

## Return Type

**None**

## Example

The following example demonstrates how to show the Field Tab from the issue if the assignee is admin.

```javascript
if(assignee == "admin") {
     lfShowTab("Field Tab");
 }
```

Now that the field is shown, you can use lfHideTab to hide it on the issue screen.

## See also

> Macro (contentbylabel)