Compare commits
No commits in common. "1e6c10b96ef5eb0e706cad91e97c8306be15c6ba" and "d2224dfd222c85de81619e2c078602cba5bc1a00" have entirely different histories.
1e6c10b96e
...
d2224dfd22
|
@ -19,12 +19,6 @@ public static partial class Db
|
|||
.FirstOrDefault(i => i.Id == id);
|
||||
}
|
||||
|
||||
public static UserAction? GetActionById(Int64? id)
|
||||
{
|
||||
return UserActions
|
||||
.FirstOrDefault(i => i.Id == id);
|
||||
}
|
||||
|
||||
public static User? GetUserById(Int64? id)
|
||||
{
|
||||
return Users
|
||||
|
|
|
@ -276,10 +276,7 @@ function Installation(props: singleInstallationProps) {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
{loading &&
|
||||
currentTab != 'information' &&
|
||||
currentTab != 'overview' &&
|
||||
currentTab != 'log' && (
|
||||
{loading && currentTab != 'information' && currentTab != 'overview' && (
|
||||
<Container
|
||||
maxWidth="xl"
|
||||
sx={{
|
||||
|
|
|
@ -14,7 +14,7 @@ function SalidomoInstallationTabs() {
|
|||
const location = useLocation();
|
||||
const context = useContext(UserContext);
|
||||
const { currentUser } = context;
|
||||
const tabList = ['batteryview', 'information', 'overview', 'log'];
|
||||
const tabList = ['batteryview', 'information'];
|
||||
|
||||
const [currentTab, setCurrentTab] = useState<string>(undefined);
|
||||
const [fetchedInstallations, setFetchedInstallations] =
|
||||
|
|
Loading…
Reference in New Issue