slackapi / deno-slack-sdk

SDK for building Run on Slack apps using Deno

Home Page:https://api.slack.com/automation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[QUERY] The hint about form

AceRui opened this issue · comments

const inputForm = MondayWorkflow.addStep(
  Schema.slack.functions.OpenForm,
  {
    title: 'Automation Request',
    interactivity: MondayWorkflow.inputs.interactivity,
    submit_label: 'Submit',
    fields: {
      elements: [
        // title
        {
          name: 'item',
          title: 'Item',
          type: Schema.types.string,
          hint: "需求内容"
        },

Thie is a part of my codes,is there something wrong with it, why is there no parameter hint when my form opens?
截屏2024-01-04 12 48 36

Hello, there is no hint available on OpenForm fields.

Please see the OpenForm element type parameters, and the available fields based on each type for each form element in our documentation on the topic.

I suggest using description instead.