23 lines
503 B
QML
23 lines
503 B
QML
|
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
import QtQuick
|
||
|
import QtQml
|
||
|
import QtQuick.Controls as QQC2
|
||
|
|
||
|
import org.kde.coreaddons as KCoreAddons
|
||
|
|
||
|
import com.redstrate.sukai
|
||
|
|
||
|
AuthorInfo {
|
||
|
id: root
|
||
|
|
||
|
required property var createdAt
|
||
|
|
||
|
onClicked: Navigation.openProfile(root.account.did, root.account.handle)
|
||
|
|
||
|
QQC2.Label {
|
||
|
text: KCoreAddons.Format.formatRelativeDateTime(root.createdAt, Locale.NarrowFormat)
|
||
|
}
|
||
|
}
|