This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # uncomment to force a specific HDMI mode (this will force VGA) | |
| hdmi_group=1 | |
| hdmi_mode=4 | |
| # uncomment to force a HDMI mode rather than DVI. This can make audio work in | |
| # DMT (computer monitor) modes | |
| hdmi_drive=2 | |
| #uncomment to overclock the arm. 700 MHz is the default. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Ref } from "vue" | |
| interface AsyncStateOptions<T, O> { | |
| transform?: (input: T) => O | |
| } | |
| interface AsyncStateReturnType<T> { | |
| execute: () => Promise<void>, | |
| refresh: () => Promise<void>, | |
| pending: Ref<boolean>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { useRef, useState, useEffect } from "react" | |
| import { type Props } from "payload/components/views/Cell" | |
| import { useConfig } from "payload/dist/admin/components/utilities/Config" | |
| const DEBOUNCE_UPDATE_MS = 1500 | |
| const EditableTextCell: React.FC<Props> = (props) => { | |
| const { field, collection, cellData, rowData } = props |
OlderNewer