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


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

## Description

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

Enables the given tab.

## Parameters

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

## Return Type

**None**

## Example

You can enable the Field Tab from the issue if he assignee is Admin.

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

## See also

> Macro (contentbylabel)