Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1eed0354 authored by Charlotte Lu's avatar Charlotte Lu
Browse files

Telephony Issue: Apn config mmsc should start with http but is 啊.

Test: Visual Test
Fix: 313630772
Change-Id: Ia8c15f0b8e878efdae065993f8dc1a6623199f5d
parent 0a2b125e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import com.android.settingslib.spa.framework.theme.SettingsTheme
fun SettingsOutlinedTextField(
    value: String,
    label: String,
    errorMessage: String? = null,
    singleLine: Boolean = true,
    enabled: Boolean = true,
    onTextChange: (String) -> Unit,
@@ -49,6 +50,12 @@ fun SettingsOutlinedTextField(
        },
        singleLine = singleLine,
        enabled = enabled,
        isError = errorMessage != null,
        supportingText = {
            if (errorMessage != null) {
                Text(text = errorMessage)
            }
        }
    )
}