---
title: "isIssueFieldChanged"
canonical: "https://support.appfire.com/space/PSJC/519372801/isIssueFieldChanged"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Verifies if the field was changed during the specific event.

Verifies if the field was changed during the specific event.

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

## Return Type

**Boolean (true/false)**

Returns 'true' if the field was changed during the specific event, and 'false' otherwise.

## Example

```javascript
if(isIssueFieldChanged("description")) {
 logPrint("ERROR", "Event: Field 'description' IS CHANGED ");
}
else {
 logPrint("ERROR", "Event: Field 'description' IS NOT changed ");
}
```

```javascript
if(isIssueFieldChanged("description")) {
 logPrint("ERROR", "Event: Field 'description' IS CHANGED ");
}
else {
 logPrint("ERROR", "Event: Field 'description' IS NOT changed ");
}
```

## See also

> Macro (contentbylabel)