diff --git a/maubot/management/frontend/src/components/PreferenceTable.js b/maubot/management/frontend/src/components/PreferenceTable.js
index 92dc3ce..ee10726 100644
--- a/maubot/management/frontend/src/components/PreferenceTable.js
+++ b/maubot/management/frontend/src/components/PreferenceTable.js
@@ -34,28 +34,32 @@ export const PrefTable = ({ children, wrapperClass }) => {
)
}
-export const PrefRow = ({ name, fullWidth = false, labelFor = undefined, children }) => (
-
-)
+export const PrefRow =
+ ({ name, fullWidth = false, labelFor = undefined, changed = false, children }) => (
+
+ )
-export const PrefInput = ({ rowName, fullWidth = false, ...args }) => (
-
-
+export const PrefInput = ({ rowName, value, origValue, fullWidth = false, ...args }) => (
+
+
)
-export const PrefSwitch = ({ rowName, fullWidth = false, ...args }) => (
-
-
+export const PrefSwitch = ({ rowName, active, origActive, fullWidth = false, ...args }) => (
+
+
)
-export const PrefSelect = ({ rowName, fullWidth = false, ...args }) => (
-
-