Skip to content

Commit

Permalink
fix unsupportedURL button action
Browse files Browse the repository at this point in the history
  • Loading branch information
erikng committed Aug 1, 2024
1 parent 5006e8e commit dec3f0f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.6] - 2024-08-01
Requires macOS 12.0 and higher.

### Added

### Changed

### Fixed
- The `unsupportedURL` key was not being honored when clicking on the Unsupported UI button
- Addresses [626](https://github.com/macadmins/nudge/issues/626)

## [2.0.5] - 2024-07-24
Requires macOS 12.0 and higher.

Expand Down
2 changes: 1 addition & 1 deletion Nudge/UI/Common/InformationButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct InformationButtonAsAction: View {

var body: some View {
Button(action: {
UIUtilities().openMoreInfo()
UIUtilities().openMoreInfoUnsupported()
UIUtilities().postUpdateDeviceActions(userClicked: true, unSupportedUI: true)
}) {
Text(.init(UserInterfaceVariables.actionButtonTextUnsupported.localized(desiredLanguage: getDesiredLanguage(locale: appState.locale))))
Expand Down

0 comments on commit dec3f0f

Please sign in to comment.