2025-03-19 11:59:08 +00:00

22 lines
539 B
JavaScript

import { action } from "@ember/object";
import UserCardContents from "discourse/components/user-card-contents";
export default class UserCardStaticContents extends UserCardContents {
layoutName = "components/user-card-contents";
elementId = null;
// Overriding functions which cause the user card to show/hide based on mouse/keyboard events:
cleanUp() {}
didInsertElement() {}
willDestroyElement() {}
keyUp() {}
// need to override this to work with the loading slider
@action
handleShowUser() {
return;
}
}