Frontmatter
| id | 9056 |
| title | Fix: CountryFlag not resetting when value is null |
| state | Closed |
| labels | bugairegression |
| assignees | tobiu |
| createdAt | Feb 8, 2026, 9:45 PM |
| updatedAt | Feb 8, 2026, 9:46 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9056 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 8930 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 8, 2026, 9:46 PM |
The
Neo.component.CountryFlagcomponent has a regression where the flag image is not cleared when thelocationvalue is set to null or an empty string. This is particularly noticeable inNeo.grid.column.CountryFlagwhen recycling rows, causing incorrect flags to persist.The issue is due to the update logic being encapsulated within an
if (value)block in theafterSetLocationmethod.Proposed Fix:
if (value)check to ensure the component updates even when the value is cleared.me.update()is called in all cases.