code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/lib/optionsSchema.json b/lib/optionsSchema.json "type": "string"
},
"requestCert": {
- "description": "Enables request for client certificate.",
+ "description": "Enables request for client certificate. This is passed directly to the https server.",
"type": "boolean"
},
"inline": {
| 7 |
diff --git a/src/core/Core.js b/src/core/Core.js @@ -128,9 +128,9 @@ class Uppy {
*/
setState (stateUpdate) {
const newState = Object.assign({}, this.state, stateUpdate)
- this.emit('core:state-update', this.state, newState, stateUpdate)
this.state = newState
+ this.emit('core:state-update', this.state, newState, state... | 12 |
diff --git a/src/util/logger/create.js b/src/util/logger/create.js @@ -2,7 +2,7 @@ const pino = require('pino')
const serializers = require('./serializers.js')
const getConfig = require('../../config.js').get
-function createLogger (tag, base = {}) {
+function createLogger (tag = '-', base = {}) {
const config = getCon... | 12 |
diff --git a/src/sweetalert2.js b/src/sweetalert2.js @@ -590,7 +590,7 @@ const sweetAlert = (...args) => {
const e = event || window.event
const keyCode = e.keyCode || e.which
- if ([9, 13, 32, 27].indexOf(keyCode) === -1) {
+ if ([9, 13, 32, 27, 37, 38, 39, 40].indexOf(keyCode) === -1) {
// Don't do work on keys we do... | 11 |
diff --git a/src/messages/MessageForm.scss b/src/messages/MessageForm.scss }
.MessageForm__emojiContainer {
- position: relative;
+ position: absolute;
width: 100%;
- height: 250px;
+ height: 295px;
+ bottom: 0;
/* generated by lib itself */
.emoji-dialog {
position: absolute;
- right: 0;
+ right: 30px;
top: 0;
}
}
| 1 |
diff --git a/nerdamer.core.js b/nerdamer.core.js @@ -5196,7 +5196,10 @@ var nerdamer = (function(imports) {
for(var j=0; j<e.length; j++) {
rowTeX.push(this.latex(e[j]));
}
- TeX += rowTeX.join(' & ')+'\\\\\n';
+ TeX += rowTeX.join(' & ');
+ if (i<symbol.elements.length-1){
+ TeX+='\\\\\n';
+ }
}
TeX += '\\end{pmatrix}... | 1 |
diff --git a/packages/composables/use-drawing/use-drawing-polyline.ts b/packages/composables/use-drawing/use-drawing-polyline.ts /*
* @Author: zouyaoji@https://github.com/zouyaoji
* @Date: 2021-10-21 10:43:32
- * @LastEditTime: 2022-02-05 23:40:49
+ * @LastEditTime: 2022-02-18 20:39:09
* @LastEditors: zouyaoji
* @Descr... | 1 |
diff --git a/getfile.php b/getfile.php @@ -43,7 +43,6 @@ if ($realpath !== false && $realpath === $full_unsafe_file_path) {
if ($has_perms) {
if (is_user_an_editor($template_id, $_SESSION['toolkits_logon_id'])) {
- if ($username == $_SESSION['toolkits_logon_username']) {
// they're logged in, and hopefully have access ... | 11 |
diff --git a/packages/gatsby/lib/utils/query-runner.js b/packages/gatsby/lib/utils/query-runner.js @@ -249,12 +249,7 @@ const q = queue(({ file, graphql, directory }, callback) => {
ast = babylon.parse(fileStr, {
sourceType: `module`,
sourceFilename: true,
- plugins: [
- `asyncFunctions`,
- `jsx`,
- `flow`,
- `objectRe... | 4 |
diff --git a/content/articles/creating-a-flipped-box-card-in-android-jetpack-compose/index.md b/content/articles/creating-a-flipped-box-card-in-android-jetpack-compose/index.md @@ -83,13 +83,13 @@ Let us get started.
### Step 1 - Creating a Compose project
Launch your Android Studio and create an empty Compose project.... | 14 |
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb @@ -222,12 +222,7 @@ class ProjectsController < ApplicationController
end
def new
- unless logged_in? && current_user.has_role?(:admin)
- flash[:error] = t(:only_administrators_may_access_that_page)
- redirect_to projects_path
... | 11 |
diff --git a/embark-ui/src/containers/EditorContainer.js b/embark-ui/src/containers/EditorContainer.js @@ -49,7 +49,7 @@ class EditorContainer extends React.Component {
}
textEditorMdSize() {
- return this.state.currentAsideTab.length ? 5 : 10;
+ return this.state.currentAsideTab.length ? 7 : 10
}
textEditorXsSize() {
... | 7 |
diff --git a/website/src/_posts/2019-04-liftoff-08.md b/website/src/_posts/2019-04-liftoff-08.md @@ -38,7 +38,7 @@ After:<br />
- We are currently investigating an [issue](https://github.com/tus/tus-js-client/issues/146) with `tus-js-client`, which affects uploads where the file size is larger than 500MB. Artur is now ... | 1 |
diff --git a/datalad_service/handlers/objects.py b/datalad_service/handlers/objects.py @@ -2,12 +2,10 @@ import logging
import os
import hashlib
import struct
-import zlib
+import subprocess
import falcon
-import git
-
def annex_key_to_path(annex_key):
word = struct.unpack('<I', hashlib.md5(
@@ -33,6 +31,7 @@ class Obj... | 11 |
diff --git a/lib/Common/DataStructures/GrowingArray.h b/lib/Common/DataStructures/GrowingArray.h @@ -35,7 +35,7 @@ namespace JsUtil
{
if (buffer != nullptr)
{
- AllocatorFree(alloc, (TypeAllocatorFunc<AllocatorType, int>::GetFreeFunc()), buffer, UInt32Math::Mul(length, sizeof(TValue)));
+ AllocatorFree(alloc, (TypeAllo... | 11 |
diff --git a/lib/prepare.js b/lib/prepare.js @@ -189,7 +189,7 @@ async function genComponentRegistrationFile ({ sourceDir }) {
return `import Vue from 'vue'\n` + components.map(genImport).join('\n')
}
-const indexRE = /\breadme\.md$/i
+const indexRE = /\b(index|readme)\.md$/i
const extRE = /\.(vue|md)$/
function fileTo... | 11 |
diff --git a/packages/openneuro-client/src/datasetGenerator.js b/packages/openneuro-client/src/datasetGenerator.js @@ -14,9 +14,13 @@ export default async function* datasetGenerator(client, query = getDatasets) {
variables: { filterBy: { public: true }, cursor },
errorPolicy: 'ignore',
})
- for (let i = 0; i < data.dat... | 7 |
diff --git a/lib/i18n.js b/lib/i18n.js @@ -62,10 +62,21 @@ module.exports.getLocale = function() {
cache.locale = systemLocale;
} else if (availableLocales.indexOf(systemLocale.split("_")[0]) !== -1) {
cache.locale = systemLocale.split("_")[0];
+ } else {
+ var looseLocaleMatch;
+ for (let i = 0, l = availableLocales.l... | 11 |
diff --git a/userscript.user.js b/userscript.user.js @@ -30459,6 +30459,49 @@ var $$IMU_EXPORT$$;
}
}
+ function strip_whitespace(str) {
+ if (!str || typeof str !== "string")
+ return str;
+
+ return str
+ .replace(/^\s+/, "")
+ .replace(/\s+$/, "");
+ }
+
+ function apply_styles(el, str) {
+ if (!str || typeof str !=... | 1 |
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js isVirtual = that.isVirtual(),
position0 = isVirtual === true ? that.selectpicker.view.position0 : 0;
+ // do nothing if a function key is pressed
+ if (e.which >= 112 && e.which <= 123) return;
+
isActive = that.$newElement.hasClass(classNames.SHOW);
if (
| 11 |
diff --git a/.travis.yml b/.travis.yml @@ -19,6 +19,7 @@ cache:
env:
global:
- REACT_ENV=development
+ - TEST_REACT_NATIVE=false
- BUNDLESIZE_GITHUB_TOKEN=63f6d1717c6652d63234cf9629977b08f4bac3fd
# - REACT_APP_NETWORK_ID=4447
- MNEMONIC="myth like bonus scare over problem client lizard pioneer submit female collect"
| 3 |
diff --git a/package.json b/package.json "description": "React components with highly customizable logic, markup and styles.",
"version": "0.9.0-rc.15",
"scripts": {
- "build": "cross-env npm run clean && npm run sass && npm run js",
+ "build": "cross-env yarn clean && yarn sass && yarn js",
+ "build:watch": "concurren... | 7 |
diff --git a/test/jasmine/tests/geo_test.js b/test/jasmine/tests/geo_test.js @@ -740,56 +740,6 @@ describe('Test Geo layout defaults', function() {
});
});
});
-
- describe([
- 'geo.visible should honor template.layout.geo.show* defaults',
- 'when template.layout.geo.visible is set to false,',
- 'and does NOT set layou... | 7 |
diff --git a/examples/material-UI-components/src/App.js b/examples/material-UI-components/src/App.js @@ -15,7 +15,6 @@ function Table({ columns, data }) {
// Use the state and functions returned from useTable to build your UI
const {
getTableProps,
- getTableHeaderProps,
headerGroups,
rows,
prepareRow,
| 2 |
diff --git a/stories/utils/generate-widget-stories.js b/stories/utils/generate-widget-stories.js @@ -39,7 +39,6 @@ const { components: { Widget } } = Widgets;
* Generates stories for a report based widget using provided data.
*
* @since 1.16.0
- *
* @private
*
* @param {Object} args Widget arguments.
| 2 |
diff --git a/src-css/mavo.scss b/src-css/mavo.scss @@ -287,6 +287,16 @@ button.mv-close {
input.mv-editor {
max-width: 100%;
+
+ &[type="number"] {
+ min-width: 3ch; /* If input is empty, we should still be able to see the controls */
+
+ /* Do not hide spinner arrows */
+ &::-webkit-inner-spin-button,
+ &::-webkit-out... | 7 |
diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js @@ -797,12 +797,37 @@ const OperationConfig = {
value: ByteRepr.DELIM_OPTIONS
}
],
- patterns: [ // TODO
- //{
- // match: "^$",
- // flags: "",
- // args: []
- //},
+ patterns: [
+ {
+ match: "^(?:[0-7]{1,2}|[123][0-7]{2})(?: (?:[0-7]... | 0 |
diff --git a/src/components/form-checkbox/form-checkbox.js b/src/components/form-checkbox/form-checkbox.js @@ -56,12 +56,12 @@ export default {
let indicator = h(false)
if (!t.is_ButtonMode && !t.is_Plain) {
- indicator = h('span', { class: 'custom-control-indicator', attrs: { 'aria-hidden': 'true' } })
+ indicator = h... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -2971,9 +2971,8 @@ var $$IMU_EXPORT$$;
"es": "Comportamiento del Popup"
},
"subcategory_video": {
- "en": "Video",
- "es": "Video",
- "ko": "\uC601\uC0C1"
+ "en": "Video/Audio",
+ "ko": "\uC601\uC0C1/\uC624\uB514\uC624"
},
"subcategory_gallery": {
"en": "Gallery",... | 10 |
diff --git a/website/ops.py b/website/ops.py @@ -1901,7 +1901,7 @@ def getLinkList(headword: str, sourceLang: str, sourceDict: str, targetLang: str
except IOError:
dictDB = None
if dictDB:
- query = "SELECT DISTINCT l.entry_id AS entry_id, l.txt AS link_id, l.element AS link_el, s.txt AS hw FROM searchables AS s, linka... | 11 |
diff --git a/src/lib/default-project/project-data.js b/src/lib/default-project/project-data.js @@ -74,22 +74,22 @@ const projectData = translateFunction => {
currentCostume: 0,
costumes: [
{
- assetId: '09dc888b0b7df19f70d81588ae73420e',
+ assetId: 'b7853f557e4426412e64bb3da6531a99',
name: translator(messages.costume, ... | 4 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,17 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.54.1] -- 2020-04-04
+
+### Changed
+ - Update dependencies in package.json & package-lock.json [#4799, #4800, #4802, #4805, #4811]
+
+#... | 3 |
diff --git a/tests/schemas/ship.schema.json b/tests/schemas/ship.schema.json "value": {
"type": "integer",
"minimum": 0
+ },
+ "recovers": {
+ "type": "integer",
+ "minimum": 0
}
},
"required": ["type", "value"],
| 11 |
diff --git a/token-metadata/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/metadata.json b/token-metadata/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/metadata.json "symbol": "FERA",
"address": "0x539F3615C1dBAfa0D008d87504667458acBd16Fa",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/ModPopupDialogImprovements.user.js b/ModPopupDialogImprovements.user.js // @description Some simple improvements for posts' Mod popup dialog
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 1.5.1
+// @version 1.6
//
// @match https://stackoverflow.com/*
// @match ... | 7 |
diff --git a/game.js b/game.js @@ -936,6 +936,7 @@ const _gameUpdate = (timestamp, timeDiff) => {
// const willDie = app.willDieFrom(damage);
app.hit(damage, {
+ type: 'sword',
collisionId,
physicsObject,
hitPosition,
| 0 |
diff --git a/runner/src/main/resources/view/app.js b/runner/src/main/resources/view/app.js @@ -126,6 +126,7 @@ function PlayerCtrl ($scope, $timeout, $interval, $element) {
}
function onFrameChange (frame) {
+ // one frame in this method is one game turn, and contians subframes for each agent's actions
for (let i in ct... | 1 |
diff --git a/lib/waterline/utils/query/forge-stage-two-query.js b/lib/waterline/utils/query/forge-stage-two-query.js @@ -879,7 +879,7 @@ module.exports = function forgeStageTwoQuery(query, orm) {
if (query.populates[populateAttrName] !== true) {
throw buildUsageError(
'E_INVALID_POPULATES',
- 'Could not populate `'+pop... | 2 |
diff --git a/tasks/stats.js b/tasks/stats.js @@ -58,7 +58,8 @@ function getInfoContent() {
'<script src="mathjax/MathJax.js?config=TeX-AMS-MML_SVG"></script>',
'```',
'',
- 'You can get the relevant MathJax files (version 2) from the internet.',
+ 'You can get the relevant MathJax files in `./vendor/extras/mathjax/` or... | 3 |
diff --git a/lib/dependencies/ContextDependencyHelpers.js b/lib/dependencies/ContextDependencyHelpers.js */
"use strict";
+const ConstDependency = require("./ConstDependency");
+
const ContextDependencyHelpers = exports;
/**
@@ -86,10 +88,24 @@ ContextDependencyHelpers.create = (
);
dep.loc = expr.loc;
const replaces =... | 9 |
diff --git a/src/components/LIcon.vue b/src/components/LIcon.vue @@ -92,8 +92,10 @@ export default {
mounted() {
this.parentContainer = findRealParent(this.$parent);
-
- propsBinder(this, this.$parent.mapObject, this.$options.props);
+ if (!this.parentContainer) {
+ throw new Error('No parent container with mapObject f... | 1 |
diff --git a/packages/cx/src/ui/layout/ContentPlaceholder.js b/packages/cx/src/ui/layout/ContentPlaceholder.js import {Widget} from '../Widget';
import {PureContainer} from '../PureContainer';
+import {isString} from "../../util/isString";
export class ContentPlaceholder extends PureContainer {
@@ -30,16 +31,14 @@ expo... | 0 |
diff --git a/server/game/cards/index.js b/server/game/cards/index.js @@ -11,12 +11,6 @@ const events = require('./events');
var cards = {};
-_.each(fs.readdirSync(path.join(__dirname, 'agendas')), file => {
- var card = require('./agendas/' + file);
-
- cards[card.code] = card;
-});
-
cards = _.extend(cards, stronghold... | 2 |
diff --git a/src/sdk/conference/conference.js b/src/sdk/conference/conference.js };
stream.channel.addStream(stream.mediaStream);
stream.channel.createOffer(false);
+ }, (err) => {
+ safeCall(onFailure, err);
});
} else {
return safeCall(onFailure, 'already published');
| 9 |
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -52,7 +52,7 @@ Onyx.connect({
let myPersonalDetails;
Onyx.connect({
key: ONYXKEYS.PERSONAL_DETAILS,
- callback: val => myPersonalDetails = _.findWhere(val, {isCurrentUser: true});
+ callback: val => myPersonalDetails = _.findWhere(val, {isCurrentUs... | 14 |
diff --git a/contributors.json b/contributors.json "linkedin": "https://www.linkedin.com/in/leonardo-alvarenga-035a52104/",
"name": "Leonardo Alvarenga"
},
+ "mohammadanang": {
+ "country": "Indonesia",
+ "name": "Mohammad Anang",
+ "linkedin": "https://www.linkedin.com/in/anangm182",
+ "twitter": "https://twitter.com/... | 3 |
diff --git a/camera-manager.js b/camera-manager.js @@ -159,8 +159,10 @@ const cameraManager = {
const f = -cameraOffset.z;
if (f < 0.5) {
return 'firstperson';
- } else {
+ } else if (f < 2) {
return 'thirdperson';
+ } else {
+ return 'isometric';
}
},
getCameraOffset() {
| 0 |
diff --git a/token-metadata/0x047686fB287e7263A23873dEa66b4501015a2226/metadata.json b/token-metadata/0x047686fB287e7263A23873dEa66b4501015a2226/metadata.json "symbol": "CUTE",
"address": "0x047686fB287e7263A23873dEa66b4501015a2226",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/Api.js b/src/Api.js @@ -266,9 +266,11 @@ class Api {
/**
* Enable sourcemap support.
+ *
+ * @param {string} type
*/
- sourceMaps() {
- global.options.sourcemaps = (this.Mix.inProduction ? false : '#inline-source-map');
+ sourceMaps(type = '#inline-source-map') {
+ global.options.sourcemaps = (this.Mix... | 11 |
diff --git a/test/session.test.js b/test/session.test.js @@ -40,26 +40,7 @@ const {
const { PROTOCOL_ERROR, SESSION_EXPIRED } = error
-describe('#integration session', () => {
- let driver
- let session
- // eslint-disable-next-line no-unused-vars
- let protocolVersion
-
- beforeEach(async () => {
- driver = neo4j.driv... | 5 |
diff --git a/website/src/docs/dashboard.md b/website/src/docs/dashboard.md @@ -113,11 +113,11 @@ By default, progress in StatusBar is shown as a simple percentage. If you would
Hide the upload button. Use this if you are providing a custom upload button somewhere, and using the `uppy.upload()` API.
-## `hideRetryButton... | 1 |
diff --git a/src/index.js b/src/index.js @@ -13,7 +13,7 @@ import { HttpLink } from 'apollo-link-http';
const client = new ApolloClient({
link: new HttpLink({
- uri: 'http://localhost:4000/graphql',
+ uri: 'https://platform-api.now.sh/graphql',
}),
cache: new InMemoryCache(),
});
| 4 |
diff --git a/config/initializers/warden.rb b/config/initializers/warden.rb @@ -300,7 +300,7 @@ module Carto::Api::AuthApiAuthentication
@request_api_key = user.api_keys.where(token: token).first
# TODO: remove this block when all api keys are in sync 'auth_api'
- if !@request_api_key && user.api_key == token
+ if !@req... | 11 |
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -28,8 +28,6 @@ articles:
url: /get-started/create-apps/machine-to-machine-apps
- title: Register APIs
url: /get-started/set-up-apis
- - title: Set Up Multiple Environments
- url: /dev-lifecycle/set-up-multiple-environments
- title: Authentication and Authorization... | 2 |
diff --git a/MidgardTurnTrackerHelper/script.json b/MidgardTurnTrackerHelper/script.json "modifies": {
"msg.playerid": "read",
"msg.content": "read",
- "campaign.turnorder": "read,write",
+ "campaign.turnorder": "read,write"
},
"conflicts": []
}
| 1 |
diff --git a/package.json b/package.json {
"name": "julia-client",
"main": "./lib/julia-client",
- "version": "0.5.11",
+ "version": "0.5.12",
"description": "Julia Evaluation",
"keywords": [],
"repository": "https://github.com/JunoLab/atom-julia-client",
| 6 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/tab-info-outliner.js b/packages/node_modules/@node-red/editor-client/src/js/ui/tab-info-outliner.js @@ -391,15 +391,15 @@ RED.sidebar.info.outliner = (function() {
if (parent.children.length === 0) {
parent.treeList.addChild(getEmptyItem(parent.id));
... | 2 |
diff --git a/src/deploy/NVA_build/mongo_upgrade.js b/src/deploy/NVA_build/mongo_upgrade.js @@ -257,6 +257,7 @@ function upgrade_system(system) {
});
});
+ let support_account_found = false;
db.accounts.find().forEach(function(account) {
if (account.sync_credentials_cache &&
@@ -285,7 +286,15 @@ function upgrade_system(... | 2 |
diff --git a/voice-input/voice-input.js b/voice-input/voice-input.js @@ -3,8 +3,10 @@ import {chatManager} from '../chat-manager.js';
import {world} from '../world.js';
import metaversefile from 'metaversefile';
-class VoiceInput {
+class VoiceInput extends EventTarget {
constructor() {
+ super();
+
this.mediaStream = ... | 0 |
diff --git a/OpenRobertaServer/src/test/java/de/fhg/iais/roberta/javaServer/integrationTest/CompilerWorkflowRobotSpecificIT.java b/OpenRobertaServer/src/test/java/de/fhg/iais/roberta/javaServer/integrationTest/CompilerWorkflowRobotSpecificIT.java @@ -62,7 +62,7 @@ public class CompilerWorkflowRobotSpecificIT {
private ... | 12 |
diff --git a/assets/js/modules/analytics/datastore/setup-flow.test.js b/assets/js/modules/analytics/datastore/setup-flow.test.js @@ -118,9 +118,7 @@ describe( 'modules/analytics setup-flow', () => {
// just for this test create new registry with only this module
const newRegistry = createRegistry();
- [
- modulesAnalyt... | 2 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/workspaces.js b/packages/node_modules/@node-red/editor-client/src/js/ui/workspaces.js @@ -107,8 +107,8 @@ RED.workspaces = (function() {
changed = true;
workspace.info = info;
}
- $("#red-ui-tab-"+(workspace.id.replace(".","-"))).toggleClass('workspac... | 9 |
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js @@ -244,7 +244,8 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_
acid = meal_data.mealCOB * ( sens / profile.carb_ratio ) / aci;
console.error("Carb Impact:",ci,"mg/dL per 5m; CI Duration:",r... | 4 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.209.5",
+ "version": "0.210.0",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/client/src/containers/AssetInfo/view.jsx b/client/src/containers/AssetInfo/view.jsx @@ -27,6 +27,7 @@ class AssetInfo extends React.Component {
shortId: channelShortId,
};
channelCanonicalUrl = `${createCanonicalLink({channel})}`;
+ console.log(channelName)
}
return (
<div className='asset-info'>
@@ -120,7... | 1 |
diff --git a/src/components/Modeler.vue b/src/components/Modeler.vue @@ -65,7 +65,6 @@ import controls from './controls';
import { highlightPadding } from '@/mixins/crownConfig';
import uniqueId from 'lodash/uniqueId';
import pull from 'lodash/pull';
-import debounce from 'lodash/debounce';
import { startEvent } from '... | 2 |
diff --git a/README.md b/README.md @@ -27,7 +27,7 @@ The login is so simple. You only need to create a google client id and configure
## The rooms Inside of #matrix
-The inside of #matrix there are some rooms. In this rooms is possible to see others colleagues and if they are talking or in a meeting in the avatar will ... | 1 |
diff --git a/includes/Modules/Tag_Manager.php b/includes/Modules/Tag_Manager.php @@ -569,7 +569,7 @@ final class Tag_Manager extends Module implements Module_With_Scopes, Module_Wit
* @param string $account_id The account ID.
* @param string|array $usage_context The container usage context(s).
*
- * @return mixed Conta... | 2 |
diff --git a/aura-impl/src/main/java/test/org/auraframework/impl/adapter/ConfigAdapterImpl.java b/aura-impl/src/main/java/test/org/auraframework/impl/adapter/ConfigAdapterImpl.java @@ -175,7 +175,7 @@ public class ConfigAdapterImpl implements ConfigAdapter {
private InstanceService instanceService;
@Inject
- private Co... | 11 |
diff --git a/userscript.user.js b/userscript.user.js @@ -37494,13 +37494,28 @@ var $$IMU_EXPORT$$;
});
};
- if (options.element.parentElement && options.element.parentElement.classList.contains("b-avatar")) {
- var link = options.element.parentElement.parentElement;
- if (link.tagName === "A") {
- var match = link.href... | 7 |
diff --git a/src/components/common/dialogs/CustomDialog.js b/src/components/common/dialogs/CustomDialog.js @@ -106,27 +106,7 @@ const CustomDialog = ({
{showButtons ? (
<View style={buttonsContainerStyle || styles.buttonsContainer}>
{buttons ? (
- buttons.map(
- ({ onPress = dismiss => dismiss(), style, disabled, mode,... | 0 |
diff --git a/src/structs/ClientManager.js b/src/structs/ClientManager.js @@ -50,7 +50,8 @@ class ClientManager extends EventEmitter {
this.handleNewArticle(article)
})
this.shardingManager = new Discord.ShardingManager(path.join(__dirname, '..', '..', 'shard.js'), {
- respawn: false
+ respawn: false,
+ token: this.conf... | 11 |
diff --git a/src/components/SettingsWindow.jsx b/src/components/SettingsWindow.jsx @@ -761,7 +761,7 @@ export default class SettingsWindow extends PureComponent {
<br />Order: <b>{(monitor.order ? monitor.order : "0")}</b>
<br />Key: <b>{monitor.key}</b>
<br />ID: <b>{"\\\\?\\" + monitor.id}</b>
- <br />Serial Number: ... | 14 |
diff --git a/test/tests-misc.js b/test/tests-misc.js @@ -318,12 +318,12 @@ asyncTest ("#1079 mapToClass", function(){
});
-asyncTest("#??? ", async ()=>{
+asyncTest("PR #1108", async ()=>{
const origConsoleWarn = console.warn;
const warnings = [];
console.warn = function(msg){warnings.push(msg); return origConsoleWarn.... | 10 |
diff --git a/articles/libraries/lock/v11/migration-guide.md b/articles/libraries/lock/v11/migration-guide.md @@ -52,5 +52,5 @@ If Lock takes a lot of time to display the login options, it could be because th
To verify that this is a problem check your logs at [Dadhboard > Logs](${manage_url}/#/logs). If you see an entr... | 12 |
diff --git a/app/models/label/LabelValidationTable.scala b/app/models/label/LabelValidationTable.scala @@ -130,11 +130,11 @@ object LabelValidationTable {
val oldValidation: Option[LabelValidation] =
validationLabels.filter(x => x.labelId === label.labelId && x.userId === label.userId).firstOption
- val (userThatApplie... | 1 |
diff --git a/app/components/Migration/CreateLedgerMigrationWallet/CreateLedgerMigrationWallet.jsx b/app/components/Migration/CreateLedgerMigrationWallet/CreateLedgerMigrationWallet.jsx @@ -31,7 +31,7 @@ export default class CreateMigrationWallet extends React.Component<
<a
onClick={() => {
electron.shell.openExternal(
... | 3 |
diff --git a/packages/component-library/src/CivicCard/cardMetaTypes.js b/packages/component-library/src/CivicCard/cardMetaTypes.js import PropTypes from "prop-types";
-import { getKeyNames } from "../../stories/shared";
const cardMetaObjectProperties = {
title: PropTypes.string,
@@ -36,6 +35,14 @@ export const optional... | 2 |
diff --git a/app/views/turkerIdExists.scala.html b/app/views/turkerIdExists.scala.html <div class="container">
<h2>This HIT cannot be started</h2>
<p>
- A potential reason for this is that you already have an existing account on our website.
- If not please contact us at ...
+ The reason is that you have already create... | 3 |
diff --git a/docs/transports.md b/docs/transports.md @@ -51,6 +51,7 @@ there are additional transports written by
* [Pusher](#pusher-transport)
* [SimpleDB](#simpledb-transport)
* [Slack](#slack-transport)
+ * [SQLite3](#sqlite3-transport)
* [SSE with KOA 2](#sse-transport-with-koa-2)
* [Sumo Logic](#sumo-logic-transpo... | 3 |
diff --git a/src/rm/RequestManagerVirtualMachine.cc b/src/rm/RequestManagerVirtualMachine.cc @@ -1244,7 +1244,7 @@ void VirtualMachineMigrate::request_execute(xmlrpc_c::paramList const& paramList
vm->get_requirements(cpu, mem, disk, pci);
- if ((pci.size() > 0) && !poffmgr)
+ if ((pci.size() > 0) && (!poffmgr && vm->ge... | 11 |
diff --git a/site/tutorials/tutorial-one-python.md b/site/tutorials/tutorial-one-python.md @@ -96,14 +96,14 @@ machine we'd simply specify its name or IP address here.
Next, before sending we need to make sure the recipient queue
exists. If we send a message to non-existing location, RabbitMQ will
-just trash the messa... | 7 |
diff --git a/src/plugins/Dashboard/index.js b/src/plugins/Dashboard/index.js @@ -75,6 +75,7 @@ module.exports = class Dashboard extends Plugin {
defaultTabIcon: defaultTabIcon,
showProgressDetails: false,
hideUploadButton: false,
+ hideProgressAfterFinish: false,
note: null,
closeModalOnClickOutside: false,
locale: def... | 0 |
diff --git a/core/api-server/api/graphql/queries/dataSource-querier.js b/core/api-server/api/graphql/queries/dataSource-querier.js @@ -44,12 +44,17 @@ class DataSourceQuerier {
}
async _getRequest(url, options) {
+ let allowedFailures = 3;
+ while (allowedFailures > 0) {
try {
+ // eslint-disable-next-line no-await-in-... | 11 |
diff --git a/source/core/String.js b/source/core/String.js @@ -2,6 +2,56 @@ const splitter =
/%(\+)?(?:'(.))?(-)?(\d+)?(?:\.(\d+))?(?:\$(\d+))?([%sn@])/g;
Object.assign( String.prototype, {
+ /**
+ Method: String#runeAt
+
+ Like charAt, but if the index points to an octet that is part of a
+ surrogate pair, the whole p... | 0 |
diff --git a/lib/plugins/aws/package/compile/events/apiGateway/lib/hack/updateStage.js b/lib/plugins/aws/package/compile/events/apiGateway/lib/hack/updateStage.js @@ -38,13 +38,12 @@ module.exports = {
}
const errorMessage = [
- 'Rest API could not be resolved. ',
- 'This might be casued by a custom API Gateway setup. ... | 7 |
diff --git a/token-metadata/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/metadata.json b/token-metadata/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/metadata.json "symbol": "ULU",
"address": "0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/ReduceClutter.user.js b/ReduceClutter.user.js // @description Revert recent changes that makes the page more cluttered
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 1.7
+// @version 1.8
//
// @include https://*stackoverflow.com/*
// @include https://*serverfaul... | 2 |
diff --git a/app/controllers/users/registrations_controller.rb b/app/controllers/users/registrations_controller.rb @@ -32,7 +32,7 @@ class Users::RegistrationsController < Devise::RegistrationsController
# If for some reason a user is already signed in, don't allow them to make
# another user
- if current_user
+ if cur... | 11 |
diff --git a/lib/Stats.js b/lib/Stats.js @@ -8,7 +8,7 @@ const RequestShortener = require("./RequestShortener");
const SizeFormatHelpers = require("./SizeFormatHelpers");
const formatLocation = require("./formatLocation");
-const d = (v, def) => v === undefined ? def : v;
+const optionOrFallback = (optionValue, fallbac... | 10 |
diff --git a/src/constants/leaderboards.js b/src/constants/leaderboards.js @@ -38,7 +38,7 @@ module.exports = {
const options = Object.assign({}, defaultOptions);
- options['name'] = helper.titleCase(lbName);
+ options['name'] = helper.titleCase(lbName.split("_").join(" "));
if(overrides.hasOwnProperty(lbName))
for(con... | 14 |
diff --git a/src/utils/commonfunctions.js b/src/utils/commonfunctions.js @@ -34,7 +34,7 @@ export const formatDate = (unformattedDate, formatString) => {
typeof unformattedDate === 'string' &&
unformattedDate.match(/^\d{4}-([0]\d|1[0-2])-([0-2]\d|3[01])$/g)
)
- unformattedDate += 'T00:00:00+0530';
+ unformattedDate += ... | 1 |
diff --git a/package.json b/package.json "name": "redux-form",
"version": "8.0.1",
"description": "A higher order component decorator for forms using Redux and React",
- "main": "./index.js",
+ "main": "./lib/index.js",
"module": "./es/index.js",
"modules.root": "./es",
"jsnext:main": "./es/index.js",
"scripts": {
"ana... | 1 |
diff --git a/rocket/bot.js b/rocket/bot.js -import { driver, api } from "@rocket.chat/sdk";
+import { driver } from "@rocket.chat/sdk";
import interactionController from "../controllers/interaction";
// import fs from "fs";
// import path from "path";
// import mime from "mime-types";
-
// const emojiDir = './emoji';
v... | 3 |
diff --git a/src/actions/general.js b/src/actions/general.js @@ -94,6 +94,8 @@ export function setServerVersion(serverVersion) {
export function setStoreFromLocalData(data) {
return async (dispatch, getState) => {
+ Client.setToken(data.token);
+ Client.setUrl(data.url);
Client4.setToken(data.token);
Client4.setUrl(dat... | 12 |
diff --git a/src/encoded/audit/experiment.py b/src/encoded/audit/experiment.py @@ -836,7 +836,7 @@ def check_experiment_dnase_seq_standards(experiment,
"ENCODE processed hotspots files {} ".format(file_names_string) + \
"produced by {} ".format(pipelines[0]['title']) + \
"( {} ) ".format(pipelines[0]['@id']) + \
- asse... | 1 |
diff --git a/src/template.njk b/src/template.njk {% from "./components/skip-link/macro.njk" import govukSkipLink %}
{% from "./components/header/macro.njk" import govukHeader %}
{% from "./components/footer/macro.njk" import govukFooter %}
+{# specify absolute url for the static assets folder e.g. http://wwww.domain.co... | 11 |
diff --git a/resources/functions/handler.js b/resources/functions/handler.js @@ -327,10 +327,6 @@ const handler = {
else if (currentChanges.includes('visual.removeUpsell') || currentChanges.includes('visual.removeAppleLogo') || currentChanges.includes('visual.removeFooter') || currentChanges.includes('visual.useOperati... | 2 |
diff --git a/network.js b/network.js @@ -2389,7 +2389,8 @@ function handleJustsaying(ws, subject, body){
return;
var arrParts = body.exception.toString().split("Breadcrumbs", 2);
var text = body.message + ' ' + arrParts[0];
- var hash = crypto.createHash("sha256").update(text, "utf8").digest("base64");
+ var matches = ... | 8 |
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -703,10 +703,6 @@ articles:
url: "/protocols/oauth2/oauth-state"
hidden: true
- - title: "Web App Integration"
- url: "/protocols/oauth2/oauth-web-protocol"
- hidden: true
-
- title: "OpenID Connect"
url: "/protocols/oidc"
| 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.