Skip to content

Commit

Permalink
Hide 'no active URL' message after 15 seconds (#3249)
Browse files Browse the repository at this point in the history
<!-- Thank you for submitting a Pull Request and helping to improve Home
Assistant. Please complete the following sections to help the processing
and review of your changes. Please do not delete anything from this
template. -->

## Summary
<!-- Provide a brief summary of the changes you have made and most
importantly what they aim to achieve -->

## Screenshots
<!-- If this is a user-facing change not in the frontend, please include
screenshots in light and dark mode. -->

## Link to pull request in Documentation repository
<!-- Pull requests that add, change or remove functionality must have a
corresponding pull request in the Companion App Documentation repository
(https://github.com/home-assistant/companion.home-assistant). Please add
the number of this pull request after the "#" -->
Documentation: home-assistant/companion.home-assistant#

## Any other notes
<!-- If there is any other information of note, like if this Pull
Request is part of a bigger change, please include it here. -->
  • Loading branch information
bgoncal authored Dec 9, 2024
1 parent 6d0b901 commit c432909
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/App/WebView/WebViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,8 @@ final class WebViewController: UIViewController, WKNavigationDelegate, WKUIDeleg

private func showNoActiveURLError() {
Current.Log.info("Showing noActiveURLError")
let config = swiftMessagesConfig()
var config = swiftMessagesConfig()
config.duration = .seconds(seconds: 15)
let view = MessageView.viewFromNib(layout: .messageView)
view.configureContent(
title: L10n.Network.Error.NoActiveUrl.title,
Expand Down

0 comments on commit c432909

Please sign in to comment.