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


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | lfRefreshScreen() | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Performs a page reload.

Performs a page reload.

## Return Type

**None**

## Example

You can use this function to refresh information on a view issue screen after performing an auto-transition when issue is viewed for the first time. In this example, the issue is created in the **New** status. When first accessed, it is auto-transitioned to the **Open** status and the page is refreshed by means of the **lfRefreshScreen** function to reflect the updated info.

```javascript
if(argv["screen"] == "view" && status == "New") {
   autotransition("Move to Open", key);
   lfRefreshScreen();
}
```

## See also

> Macro (contentbylabel)