[Possible is bug] @Parameter(requestValueDialog:) doesn't shows value in dialog view when user set value: ask every time

I had the next intent:

struct Intent: AppIntent {
    static var title: LocalizedStringResource = "Intent"
    static var openAppWhenRun: Bool = true

    @Parameter(title: "Title", requestValueDialog: .init("Dialog"))
    var entity: [Entities]

    @MainActor
    func perform() async throws -> some IntentResult {
        // return result
    }
}

Is it a bug in the AppIntents framework? Because I don't understand why I don't see parameter value when the user set this option

[Possible is bug] @Parameter(requestValueDialog:) doesn't shows value in dialog view when user set value: ask every time
 
 
Q